namespace Admin.NET.Core;
///
/// 系统字典值表
///
[SugarTable(null, "系统字典值表")]
[SystemTable]
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 virtual string Value { get; set; }
///
/// 编码
///
[SugarColumn(ColumnDescription = "编码", Length = 64)]
[Required, MaxLength(64)]
public virtual string Code { get; set; }
///
/// 排序
///
[SugarColumn(ColumnDescription = "排序")]
public int OrderNo { get; set; } = 100;
///
/// 备注
///
[SugarColumn(ColumnDescription = "备注", Length = 128)]
[MaxLength(128)]
public string? Remark { get; set; }
///
/// 状态
///
[SugarColumn(ColumnDescription = "状态")]
public StatusEnum Status { get; set; } = StatusEnum.Enable;
}