using JNPF.Common.Security; using JNPF.DependencyInjection; namespace JNPF.Apps.Entitys.Dto; /// /// /// [SuppressSniffer] public class AppTreeOutput : TreeModel { /// /// 编码. /// public string? enCode { get; set; } /// /// 名称. /// public string? fullName { get; set; } /// /// 表单类型. /// public string? formType { get; set; } /// /// 类型. /// public string? type { get; set; } /// /// 图标. /// public string? icon { get; set; } /// /// 分类. /// public string? category { get; set; } /// /// 背景色. /// public string? iconBackground { get; set; } /// /// 可见类型. /// public string? visibleType { get; set; } /// /// 创建人. /// public string? creatorUser { get; set; } /// /// 创建时间. /// public DateTime? creatorTime { get; set; } /// /// 排序. /// public long? sortCode { get; set; } /// /// 状态标识. /// public int? enabledMark { get; set; } /// /// 是否常用. /// public bool isData { get; set; } }