using JNPF.Common.Security; using JNPF.DependencyInjection; namespace JNPF.Systems.Entitys.Dto.DictionaryData; /// /// 数据字典下拉框数据输出. /// [SuppressSniffer] public class DictionaryDataSelectorDataOutput : TreeModel { /// /// 项目名称. /// public string fullName { get; set; } /// /// 图标. /// public string enCode { get; set; } /// /// 排序. /// public long? sortCode { get; set; } }