using JNPF.Common.Security; using JNPF.DependencyInjection; namespace JNPF.Systems.Entitys.Dto.Organize; /// /// 机构树输出. /// [SuppressSniffer] public class OrganizeTreeOutput : TreeModel { /// /// 图标. /// public string icon { get; set; } /// /// 名称. /// public string fullName { get; set; } /// /// 排序. /// public long? sortCode { get; set; } }