using System.ComponentModel.DataAnnotations; using Common.Enum; using Entity.Base; using SqlSugar; namespace Entity.DbModel.System { /// /// /// [SugarTable("sys_dict_data")] /// /// 系统字典值表 /// public partial class SysDictData : EntityBase { /// /// 字典类型Id /// [SugarColumn(ColumnDescription = "字典类型Id", ColumnName = "dict_type_id")] public long DictTypeId { get; set; } /// /// 字典类型 /// //public SysDictType DictType { get; set; } /// /// 值 /// [SugarColumn(ColumnDescription = "值", Length = 128, ColumnName = "value")] [Required, MaxLength(128)] public virtual string Value { get; set; } /// /// 编码 /// [SugarColumn(ColumnDescription = "编码", Length = 128, ColumnName = "code")] [Required, MaxLength(128)] public virtual string Code { get; set; } /// /// 名称 /// [SugarColumn(ColumnDescription = "名称", Length = 128, ColumnName = "name")] [MaxLength(128)] public virtual string? Name { get; set; } /// /// 显示样式-标签颜色 /// [SugarColumn(ColumnDescription = "显示样式-标签颜色", Length = 16, ColumnName = "tag_type")] [MaxLength(16)] public string? TagType { get; set; } /// /// 显示样式-Style(控制显示样式) /// [SugarColumn(ColumnDescription = "显示样式-Style", Length = 512, ColumnName = "style_setting")] [MaxLength(512)] public string? StyleSetting { get; set; } /// /// 显示样式-Class(控制显示样式) /// [SugarColumn(ColumnDescription = "显示样式-Class", Length = 512, ColumnName = "class_setting")] [MaxLength(512)] public string? ClassSetting { get; set; } /// /// 排序 /// [SugarColumn(ColumnDescription = "排序", ColumnName = "order_no")] public int OrderNo { get; set; } = 100; /// /// 备注 /// [SugarColumn(ColumnDescription = "备注", Length = 2048, ColumnName = "remark")] [MaxLength(2048)] public string? Remark { get; set; } /// /// 拓展数据(保存业务功能的配置项) /// [SugarColumn(ColumnDescription = "拓展数据(保存业务功能的配置项)", ColumnDataType = StaticConfig.CodeFirst_BigString, ColumnName = "ext_data")] public string? ExtData { get; set; } /// /// 状态 /// [SugarColumn(ColumnDescription = "状态", ColumnName = "status")] public StatusEnum Status { get; set; } = StatusEnum.Enable; } }