using JNPF.Common.Security;
namespace JNPF.VisualDev.Entitys.Dto.Portal;
///
/// 获取门户列表输出.
///
public class PortalListOutput : TreeModel
{
///
/// 分类.
///
public string category { get; set; }
///
/// 名称.
///
public string fullName { get; set; }
///
/// 编码.
///
public string enCode { get; set; }
///
/// 说明.
///
public string description { get; set; }
///
/// 创建时间.
///
public DateTime? creatorTime { get; set; }
///
/// 创建人.
///
public string creatorUser { get; set; }
///
/// 最后修改人.
///
public string lastModifyUser { get; set; }
///
/// 最后修改时间.
///
public DateTime? lastModifyTime { get; set; }
///
/// 是否可用
/// 0-不可用,1-可用.
///
public int? enabledMark { get; set; } = 0;
///
/// 排序.
///
public string sortCode { get; set; }
///
/// 删除标记.
///
public string deleteMark { get; set; }
///
/// 类型(0-页面设计,1-自定义路径).
///
public int? type { get; set; }
///
/// 静态页面路径.
///
public string customUrl { get; set; }
///
/// 链接类型(0-页面,1-外链).
///
public int? linkType { get; set; }
}