using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace KJH55128_Rec.ViewModels { public class GetZX_NewsDetails { /// /// 文章 PK /// public int? PK { get; set;} /// /// 新闻主键 /// public string NewsId { get; set; } /// /// 完整标题 /// public string FullHead { get; set; } /// /// 创建日期 /// public string CreateDate { get; set; } /// /// 创建用户 /// public string CreateUserName{ get; set; } /// /// 新闻内容 /// public string NewsContent { get; set; } /// /// 期数 /// public string PeriodsNumber { get; set; } /// /// 是否推荐 /// public bool? IsRecommend { get; set; } /// /// 是否热门 /// public bool? IsHot { get; set; } /// /// 浏览量 /// public int? PV { get; set; } /// /// 三要素-Title /// /// public string TitleElement { get; set; } /// /// 三要素-Description /// /// public string DescriptionElement { get; set; } /// /// 三要素-Keyword /// /// public string KeywordElement { get; set; } /// /// 分类名 /// public string Category { get; set; } /// /// 上一期、下一期 /// public List PreAndNextNewsList { get; set; } } public class OnThene { /// /// 标识当前文章是上一期还是下一期 1-上一期 2-下一期 /// public int Which { get; set; } /// /// 新闻主键 /// public string NewsId { get; set; } /// /// 标题 /// public string Title { get; set; } } }