using System.Collections.Generic; namespace GxPress.Request.Navigation { public class NavigationRequest { } /// /// 内容导航搜索 /// public class NavigationSearchRequest { /// /// 分类ID /// /// public int CategoryId { get; set; } /// /// 开始时间 /// /// public string BeginTime { get; set; } /// /// 结束时间 /// /// public string EndTime { get; set; } /// /// 排序 /// /// public string Sort { get; set; } /// /// 作者ID /// /// public List TeacherId { get; set; } /// /// 单位 /// /// public List Unit { get; set; } /// /// 出版社 /// /// public List Press { get; set; } } /// /// 修改导航 /// public class NavigationUpRequest { /// /// ID /// /// public int Id { get; set; } /// /// 导航名称 /// /// public string Name { get; set; } /// /// 是否禁用 1设置2取消 /// /// public int IsDisable { get; set; } /// /// 父级ID /// /// public int ParentId { get; set; } /// /// 排序 /// /// public int Sort { get; set; } /// /// 中间件页面ID /// /// public int MiddleLableId { get; set; } /// /// 是否可以操作 1设置2取消 /// /// public int Isoperate { get; set; } /// /// 终端 1 pc 2 移动端 /// /// public int Terminal { get; set; } /// /// 路径 /// /// public string ControllerUrl { get; set; } /// /// 路径 /// /// public string ActionUrl { get; set; } } /// /// 年份搜索 /// public class NavigationYearRequest { /// /// 开始时间 /// /// public string BeginTime { get; set; } /// /// 结束时间 /// /// public string EndTime { get; set; } /// /// 分类ID /// /// public int CategoryId { get; set; } } }