📄 station.cs
字号:
using System;namespace iSun.Entitys{ [Table("Station","StationId")] public class station { public station() { this._OpTime = System.DateTime.Now; } private System.Int32 _StationId; public System.Int32 StationId { get { return _StationId; } set { _StationId = value; } } private System.Int32 _ParentId; public System.Int32 ParentId { get { return _ParentId; } set { _ParentId = value; } } private System.Int32 _Oprator; public System.Int32 Oprator { get { return _Oprator; } set { _Oprator = value; } } private System.DateTime _ModifyDate; public System.DateTime ModifyDate { get { return _ModifyDate; } set { _ModifyDate = value; } } private System.Int32 _Levels; public System.Int32 Levels { get { return _Levels; } set { _Levels = value; } } private System.Int32 _PositionId; public System.Int32 PositionId { get { return _PositionId; } set { _PositionId = value; } } private System.Int32 _DeptId; public System.Int32 DeptId { get { return _DeptId; } set { _DeptId = value; } } private System.Int32 _ModifyUser; public System.Int32 ModifyUser { get { return _ModifyUser; } set { _ModifyUser = value; } } private System.DateTime _OpTime; public System.DateTime OpTime { get { return _OpTime; } set { _OpTime = value; } } private System.String _Caption; public System.String Caption { get { return _Caption; } set { _Caption = value; } } private System.Int16 _Stop; public System.Int16 Stop { get { return _Stop; } set { _Stop = value; } } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -