namespace Cis.Application.Sys; /// /// 系统字典值表 /// [SugarTable("sys_dict_data", "系统字典值表")] public class SysDictData : EntityBase { /// /// 字典类型Id /// [SugarColumn(ColumnDescription = "字典类型Id")] public long DictTypeId { get; set; } /// /// 字典类型 /// [SugarColumn(IsIgnore = true)] [Navigate(NavigateType.OneToOne, nameof(DictTypeId))] public SysDictType DictType { get; set; } /// /// 值 /// [SugarColumn(ColumnDescription = "值", Length = 128)] [Required, MaxLength(128)] public string Value { get; set; } /// /// 编码 /// [SugarColumn(ColumnDescription = "编码", Length = 64)] [Required, MaxLength(64)] public string Code { get; set; } /// /// 排序 /// [SugarColumn(ColumnDescription = "排序")] public int Order { get; set; } /// /// 备注 /// [SugarColumn(ColumnDescription = "备注", Length = 128)] [MaxLength(128)] public string Remark { get; set; } /// /// 状态 /// [SugarColumn(ColumnDescription = "状态")] public StatusEnum Status { get; set; } = StatusEnum.Enable; }