using System.Collections.Generic; using GxPress.Result.Media; namespace GxPress.Result.Navigation { /// /// 导航数据的显示 /// public class NavigationMediaResult { /// /// id /// /// public int Id { get; set; } /// /// 标签名称 /// /// public string LabelName { get; set; } /// /// 标签名称描述 /// /// public string LabelNameDescribe { get; set; } /// /// 备注 /// /// public string Remark { get; set; } /// /// 排序 /// /// public int Sort { get; set; } /// /// 是否跳转 /// /// public bool IsSkip { get; set; } /// /// 是否分页 /// /// public bool IsPage { get; set; } /// /// 路径 /// /// public string ControllerUrl { get; set; } /// /// 路径 /// /// public string ActionUrl { get; set; } /// /// 资源类型 /// /// public int ResourceType { get; set; } /// /// 样式类型 /// /// public string StyleType { get; set; } /// /// 媒体 /// /// public List MediaResults { get; set; } } /// /// 导航数据的显示 /// public class NavigationResult { /// /// id /// /// public int Id { get; set; } /// /// 导航名称 /// /// public string Name { get; set; } /// /// 是否禁用 /// /// public bool IsDisable { get; set; } /// /// 父级ID /// /// public int ParentId { get; set; } /// /// 排序 /// /// public int Sort { get; set; } /// /// 中间件页面ID /// /// public int MiddleLableId { get; set; } /// /// 是否可以操作 /// /// public bool Isoperate { get; set; } /// /// 终端 1 pc 2 移动端 /// /// public int Terminal { get; set; } /// /// 是否存在子集 /// /// public bool IsChildren { get; set; } /// /// 子集 /// /// public List Children { get; set; } /// /// 路径 /// /// public string ControllerUrl { get; set; } /// /// 路径 /// /// public string ActionUrl { get; set; } } }