using SqlSugar; namespace WCS.Entity { /// /// 枚举映射表 /// [SugarTable(nameof(WCS_MAPPINGENTRY), "枚举映射表")] public class WCS_MAPPINGENTRY { /// /// ID /// [SugarColumn(IsPrimaryKey = true, ColumnDescription = "ID")] public int MEP_ID { get; set; } /// /// 编号 /// [SugarColumn(ColumnDescription = "编号")] public int MEP_MAPPINGNO { get; set; } /// /// 枚举类 /// [SugarColumn(Length = 50, ColumnDescription = "枚举类")] public string MEP_MAPPINGTYPE { get; set; } /// /// 枚举名称 /// [SugarColumn(Length = 50, ColumnDescription = "枚举名称")] public string MEP_MAPPINGCHNAME { get; set; } /// /// 是否停用 /// [SugarColumn(ColumnDescription = "是否停用")] public bool MEP_ISSTOP { get; set; } } }