using MC.ORM; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CP.Model { /// /// 专题相关 /// [TableName("Zt_Article"), PrimaryKey("Id")] public class ZtArticle { public int Id { set; get; } public string Title { set; get; } public int Cid { set; get; } public int TagId { set; get; } public string ShortDetail { set; get; } public DateTime Addtime { set; get; } public bool IsDelete { set; get; } } }