using JNPF.DependencyInjection; namespace JNPF.Systems.Entitys.Dto.DictionaryData; /// /// 数据字典列表输出. /// [SuppressSniffer] public class DictionaryDataListOutput { /// /// id. /// public string id { get; set; } /// /// 上级id. /// public string parentId { get; set; } /// /// 项目名称. /// public string fullName { get; set; } /// /// 项目编码. /// public string enCode { get; set; } /// /// 状态(1-可用,0-禁用). /// public int enabledMark { get; set; } /// /// 排序. /// public long? sortCode { get; set; } }