using System.Text.Json.Serialization; using JNPF.Common.Security; namespace JNPF.VisualDev.Entitys.Dto.Portal; /// /// 门户下拉框输出. /// public class PortalSelectOutput : TreeModel { /// /// 名称. /// public string fullName { get; set; } /// /// 排序. /// [JsonIgnore] public string sortCode { get; set; } /// /// 有效标记. /// [JsonIgnore] public int enabledMark { get; set; } /// /// 删除标记. /// [JsonIgnore] public string deleteMark { get; set; } /// /// 类型(0-页面设计,1-自定义路径). /// public int? type { get; set; } /// /// 静态页面路径. /// public string customUrl { get; set; } /// /// 链接类型(0-页面,1-外链). /// public int? linkType { get; set; } }