using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CP.Model.ZiXun { public class newManagerModels { /// /// 文章ID /// public int ID { get; set; } /// /// 图片guid /// public string guid { get; set; } /// /// 标题 /// public string title { get; set; } /// /// 内容 /// public string description { get; set; } /// /// 菜单ID /// public int menuId { get; set; } /// /// 标签id /// public int labelId { get; set; } /// /// 期数 /// public int periodsNumber { get; set; } /// /// 排序 /// public int sortNo { get; set; } /// /// 创建时间 /// public DateTime createTime { get; set; } /// /// 创建人id /// public int createUserId { get; set; } /// /// 创建人名字 /// public string createUserName { get; set; } /// /// 是否删除 /// public bool isDelete { get; set; } /// /// 是否推荐 /// public bool isHot { get; set; } /// /// 点击量 /// public int Clickamount { get; set; } /// /// 三要素 中title标签 /// public string titleElement { get; set; } /// /// 三要素 description /// public string descriptionElement { get; set; } /// /// 三要素 keyword /// public string keywordElement { get; set; } /// /// 静态文件地址 /// public string SourceUrl { get; set; } /// /// 是否生成 /// public bool IsGenerated { get; set; } } }