using JNPF.Common.Security; using JNPF.DependencyInjection; namespace JNPF.Systems.Entitys.Dto.Group; /// /// 分组下拉框输出. /// [SuppressSniffer] public class GroupSelectorOutput : TreeModel { /// /// 分组名称. /// public string fullName { get; set; } /// /// 有效标志. /// public bool enabledMark { get; set; } /// /// 排序. /// public long? sortCode { get; set; } /// /// 类型. /// public string type { get; set; } /// /// 图标. /// public string icon { get; set; } }