namespace JNPF.VisualDev.Entitys.Dto.Portal; /// /// 门户设计信息输出. /// public class PortalInfoAuthOutput { /// /// 表单JSON. /// public string formData { get; set; } /// /// 类型(0-页面设计,1-自定义路径). /// public int? type { get; set; } /// /// 静态页面路径. /// public string customUrl { get; set; } /// /// 链接类型(0-页面,1-外链). /// public int? linkType { get; set; } }