using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.Request { public class NewsRequest { public int Top { get; set; } = 5; public int CategoryId { get; set; } /// /// /// public string provinceCode { get; set; } = "370000"; } /// /// 新增新闻资讯请求 /// public class NewsInfoAddRequest { /// /// 新闻分类Id /// public int CategoryId { get; set; } /// /// 作者/来源 /// public string Author { get; set; } /// /// 省份编号 /// public string ProvinceCode { get; set; } /// /// 新闻标题 /// public string Title { get; set; } /// /// 封面图 /// public string CoverImg { get; set; } /// /// 摘要 /// public string Summary { get; set; } /// /// 新闻详情 /// public string Detail { get; set; } /// /// 点击量,不传默认0 /// public int Click { get; set; } = 0; } /// /// 批量新增新闻资讯请求 /// public class NewsInfoBatchAddRequest { public List NewsList { get; set; } } }