using DS.Module.Core; using DS.Module.Core.Data; namespace DS.WMS.Core.Sys.Entity; /// /// 系统字典值表 /// [SqlSugar.SugarTable("sys_dict_data")] public class SysDictData : BaseModel { /// /// 字典类型Id /// public long TypeId { get; set; } /// /// 字典值 /// [SqlSugar.SugarColumn(Length = 100,ColumnDescription="字典值")] public string Value { get; set; } /// /// 字典名称 /// [SqlSugar.SugarColumn(Length = 50,ColumnDescription="字典名称")] public string Name { get; set; } /// /// 字典名称(英文) /// [SqlSugar.SugarColumn(Length = 100,ColumnDescription="字典名称(英文)",IsNullable = true)] public string EnName { get; set; } /// /// 字典名称(俄文) /// [SqlSugar.SugarColumn(Length = 100, ColumnDescription = "字典名称(俄文)", IsNullable = true)] public string RuName { get; set; } /// /// 字典名称(法文) /// [SqlSugar.SugarColumn(Length = 100, ColumnDescription = "字典名称(法文)", IsNullable = true)] public string FrName { get; set; } /// /// 字典名称(西班牙文) /// [SqlSugar.SugarColumn(Length = 100, ColumnDescription = "字典名称(西班牙文)", IsNullable = true)] public string EsName { get; set; } /// /// 字典名称(阿拉伯文) /// [SqlSugar.SugarColumn(Length = 100, ColumnDescription = "字典名称(阿拉伯文)", IsNullable = true)] public string ArName { get; set; } /// /// 拓展字段 /// [SqlSugar.SugarColumn(Length = 100,ColumnDescription="拓展字段",IsNullable = true)] public string ExpandValue { get; set; } /// /// 排序 /// [SqlSugar.SugarColumn(ColumnDescription = "排序")] public int? OrderNo { get; set; } = 100; /// /// 状态 /// [SqlSugar.SugarColumn(ColumnDescription = "状态")] public StatusEnum? Status { get; set; } = StatusEnum.Enable; }