namespace YY.Admin.Core; /// /// 系统字典值表 /// [SugarTable("sys_dict_data", "系统字典值表")] [SysTable] [SugarIndex("index_{table}_TV", nameof(DictTypeId), OrderByType.Asc, nameof(Value), OrderByType.Asc, IsUnique = true)] public partial class SysDictData : EntityBase { /// /// 字典类型Id /// [SugarColumn(ColumnDescription = "字典类型Id")] public long DictTypeId { get; set; } /// /// 字典类型 /// [Newtonsoft.Json.JsonIgnore] [System.Text.Json.Serialization.JsonIgnore] [Navigate(NavigateType.OneToOne, nameof(DictTypeId))] public SysDictType DictType { get; set; } /// /// 显示文本 /// [SugarColumn(ColumnDescription = "显示文本", Length = 256)] [Required, MaxLength(256)] public virtual string Label { get; set; } /// /// 值 /// [SugarColumn(ColumnDescription = "值", Length = 256)] [Required, MaxLength(256)] public virtual string Value { get; set; } /// /// 编码 /// /// /// [SugarColumn(ColumnDescription = "编码", Length = 256)] public virtual string? Code { get; set; } /// /// 名称 /// [SugarColumn(ColumnDescription = "名称", Length = 256)] [MaxLength(256)] public virtual string? Name { get; set; } /// /// 显示样式-标签颜色 /// [SugarColumn(ColumnDescription = "显示样式-标签颜色", Length = 16)] [MaxLength(16)] public string? TagType { get; set; } /// /// 显示样式-Style(控制显示样式) /// [SugarColumn(ColumnDescription = "显示样式-Style", Length = 512)] [MaxLength(512)] public string? StyleSetting { get; set; } /// /// 显示样式-Class(控制显示样式) /// [SugarColumn(ColumnDescription = "显示样式-Class", Length = 512)] [MaxLength(512)] public string? ClassSetting { get; set; } /// /// 排序 /// [SugarColumn(ColumnDescription = "排序", DefaultValue = "100")] public int OrderNo { get; set; } = 100; /// /// 备注 /// [SugarColumn(ColumnDescription = "备注", Length = 2048)] [MaxLength(2048)] public string? Remark { get; set; } /// /// 拓展数据(保存业务功能的配置项) /// [SugarColumn(ColumnDescription = "拓展数据(保存业务功能的配置项)", ColumnDataType = StaticConfig.CodeFirst_BigString)] public string? ExtData { get; set; } /// /// 状态 /// [SugarColumn(ColumnDescription = "状态", DefaultValue = "1")] public StatusEnum Status { get; set; } = StatusEnum.Enable; }