using MC.ORM; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CP.Model { /// /// 专题相关 /// [TableName("Zt_ArticleDetail"), PrimaryKey("Id")] public class ZtArticleDetail { public int Id { set; get; } /// /// 文章标题 /// public string Title { get; set; } /// /// 文章内容 /// public string Detail { get; set; } /// /// 编辑ID /// public int EditId { get; set; } /// /// 编辑者 /// public string Editor { get; set; } /// /// 添加时间 /// public DateTime Addtime { get; set; } /// /// 文章分类ID /// [Ignore] public int Cid { get; set; } /// /// 关键字|标签ID /// [Ignore] public int TagId { get; set; } /// /// 简介 /// [Ignore] public string ShortDetail { get; set; } } }