using JNPF.Common.Security; using JNPF.DependencyInjection; namespace JNPF.Systems.Entitys.Dto.DictionaryData; /// /// 数据字典树形输出. /// [SuppressSniffer] public class DictionaryDataTreeOutput : TreeModel { /// /// 项目名称. /// public string fullName { get; set; } /// /// 项目编码. /// public string enCode { get; set; } /// /// 状态(1-可用,0-禁用). /// public int enabledMark { get; set; } /// /// 排序. /// public long? sortCode { get; set; } }