using System.Collections.Generic; namespace GxPress.Result.SystemLabel { /// /// 标签 /// public class SystemLabelResult { /// /// /// /// public int Id { get; set; } /// /// 标签名称 /// /// public string LabelName { get; set; } /// /// 标签名称描述 /// /// public string LabelNameDescribe { get; set; } /// /// 备注 /// /// public string Remark { get; set; } /// /// 是否禁用 /// /// public bool IsDisable { get; set; } /// /// 排序 /// /// public int Sort { get; set; } /// /// 是否跳转 /// /// public bool IsSkip { get; set; } /// /// 是否分页 /// /// public bool IsPage { get; set; } /// /// 分页条数 /// /// public int PageSize { get; set; } /// /// 路径 /// /// public string ControllerUrl { get; set; } /// /// 路径 /// /// public string ActionUrl { get; set; } /// /// 资源类型 文章100书籍20,课程30,音频40,期刊50,视频60,名栏90,公众号110,刊期120,榜单130,示范课堂140,品牌专区1(150),品牌专区2(160) /// /// public int ResourceType { get; set; } /// /// 样式类型 /// /// public string StyleType { get; set; } /// /// 是否显示标签名称 /// /// public bool IsShowLabelName { get; set; } /// ///资源数量 /// /// public int ResourceCount { get; set; } /// /// 媒体ID /// /// public IEnumerable MediaIds { get; set; } } /// /// APP导航 /// public class AppLabelResult { /// /// /// /// public int Id { get; set; } /// /// 显示数据 /// /// public IEnumerable Items { get; set; } /// /// 标签名称 /// /// public string LabelName { get; set; } /// /// 资源类型 文章100书籍20,课程30,音频40,期刊50,视频60,名栏90,公众号110,刊期120,榜单130,示范课堂140,品牌专区1(150),品牌专区2(160) /// /// public int ResourceType { get; set; } /// /// 路径 /// /// public string ActionUrl { get; set; } /// /// 是否分页 /// /// public bool IsPage { get; set; } /// /// 请求类型 /// /// public string Method { get; set; } } }