using System; namespace Leit.Model { /// /// 数据表实体类:StationWorkLog /// [Serializable()] public class StationWorkLog :EntityBase { //当前代码为系统自动生成 /// /// Int64: /// [SqlSugar.SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public Int64 Id {get;set;} /// /// String: /// public String Position {get;set;} /// /// String: /// public String Msg {get;set;} /// /// String: /// public String Command {get;set;} /// /// String: /// public String StationCode {get;set;} /// /// DateTime: /// public DateTime? OperationTime {get;set;} } }