namespace JNPF.VisualDev.Entitys.Dto.Portal; /// /// 门户设计信息输出. /// public class PortalInfoOutput { /// /// ID. /// public string id { get; set; } /// /// 名称. /// public string fullName { get; set; } /// /// 分类. /// public string category { get; set; } /// /// 编码. /// public string enCode { get; set; } /// /// 是否可用 /// 0-不可用,1-可用. /// public int enabledMark { get; set; } = 0; /// /// 说明. /// public string description { get; set; } /// /// 表单JSON. /// public string formData { get; set; } /// /// 排序. /// public long sortCode { get; set; } /// /// 类型(0-页面设计,1-自定义路径). /// public int? type { get; set; } /// /// 静态页面路径. /// public string customUrl { get; set; } /// /// 链接类型(0-页面,1-外链). /// public int? linkType { get; set; } }