namespace MiaoYu.Repository.Admin.Entities.Systems;
///
/// 数据字典
///
[EntityDescription(FieldIgnored = true)]
public class SysDictionary : DefaultEntityIdentityIntKey
{
///
/// 排序号
///
public int Sort { get; set; }
///
/// 编码
///
public string? Code { get; set; }
///
/// 分组名称/键
///
public string? Name { get; set; }
///
/// 值
///
public string? Value { get; set; }
///
/// 父级Id
///
public int? ParentId { get; set; }
}