using System; namespace Aborlen.Model { /// /// 数据表实体类:LabelDetail /// [Serializable()] public class LabelDetail :BasicEntity { //当前代码为系统自动生成 /// /// Int32: /// [SqlSugar.SugarColumn(IsPrimaryKey = true)] public Int32 PlantNr {get;set;} /// /// String: /// [SqlSugar.SugarColumn(IsPrimaryKey = true)] public String LabelId {get;set;} /// /// Int32: /// [SqlSugar.SugarColumn(IsPrimaryKey = true)] public Int32 Pos {get;set;} /// /// String: /// public String VariableName {get;set;} /// /// String: /// public String VariableValue {get;set;} /// /// DateTime: /// public DateTime? LastModify {get;set;} /// /// String: /// public String LastUser {get;set;} /// /// DateTime: /// public DateTime? CreateTime {get;set;} } }