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; } /// /// 扩展属性 /// public string? ExtendValue { get; set; } /// /// 项目编码 /// public string? ProjectCode { get; set; } }