using SqlSugar; namespace NewPdaSqlServer.entity { /// /// 系统快码表 /// [SugarTable("MES_SYS_LOOKUPS")] public class MesSysLookups { /// /// /// 默认值: (newid()) /// [SugarColumn(ColumnName="guid" ,IsPrimaryKey = true )] public Guid Guid { get; set; } /// /// 系统快码值 /// [SugarColumn(ColumnName="LOOKUP_VALUE" )] public string LookupValue { get; set; } /// /// 系统快码显示值 /// [SugarColumn(ColumnName="LOOKUP_NAME" )] public string LookupName { get; set; } /// /// 顺序值 /// [SugarColumn(ColumnName="ORDER_NO" )] public long? OrderNo { get; set; } /// /// 内部代码|系统特殊使用 /// [SugarColumn(ColumnName="INSIDE_CODE" )] public string InsideCode { get; set; } /// /// 备注 /// [SugarColumn(ColumnName="DESCRIPTION" )] public string Description { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName="CREATE_BY" )] public string CreateBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName="CREATE_DATE" )] public DateTime? CreateDate { get; set; } /// /// 最后更新人 /// [SugarColumn(ColumnName="LASTUPDATE_BY" )] public string LastupdateBy { get; set; } /// /// 最后更新时间 /// [SugarColumn(ColumnName="LASTUPDATE_DATE" )] public DateTime? LastupdateDate { get; set; } /// /// 工作中心编码 /// [SugarColumn(ColumnName="WORK_CENTER" )] public string WorkCenter { get; set; } /// /// 工作中心名称 /// [SugarColumn(ColumnName="WORK_CENTER_NAME" )] public string WorkCenterName { get; set; } /// /// 工厂 /// [SugarColumn(ColumnName="FACTORY" )] public string Factory { get; set; } /// /// 分类(手工和自动) /// [SugarColumn(ColumnName="F_TYPE" )] public string FType { get; set; } /// /// 公司 /// [SugarColumn(ColumnName="COMPANY" )] public string Company { get; set; } /// /// 检查大类 /// [SugarColumn(ColumnName="FQM_TYPE_ID" )] public string FqmTypeId { get; set; } /// /// 父id /// [SugarColumn(ColumnName="LOOKUP_GUID" )] public Guid? LookupGuid { get; set; } } }