using JNPF.Common.Contracts; using SqlSugar; namespace JNPF.Systems.Entitys.System; /// /// 字典数据 /// 版 本:V3.2 /// 版 权:拓通智联科技有限公司(http://www.tuotong-tech.com) /// 日 期:2021-06-01. /// [SugarTable("BASE_DICTIONARYDATA")] public class DictionaryDataEntity : CLDEntityBase { /// /// 上级. /// [SugarColumn(ColumnName = "F_PARENTID")] public string ParentId { get; set; } /// /// 名称. /// [SugarColumn(ColumnName = "F_FULLNAME")] public string FullName { get; set; } /// /// 编码. /// [SugarColumn(ColumnName = "F_ENCODE")] public string EnCode { get; set; } /// /// 拼音. /// [SugarColumn(ColumnName = "F_SIMPLESPELLING")] public string SimpleSpelling { get; set; } /// /// 默认. /// [SugarColumn(ColumnName = "F_ISDEFAULT")] public int? IsDefault { get; set; } /// /// 描述. /// [SugarColumn(ColumnName = "F_DESCRIPTION")] public string Description { get; set; } /// /// 排序码. /// [SugarColumn(ColumnName = "F_SORTCODE")] public long? SortCode { get; set; } /// /// 类别主键. /// [SugarColumn(ColumnName = "F_DICTIONARYTYPEID")] public string DictionaryTypeId { get; set; } }