using MC.ORM; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CP.Model { /// /// 专题图片 /// [TableName("zt_picture"), PrimaryKey("Id")] public class ZtPicture { public int Id { set; get; } public string Code { set; get; } public string Name { set; get; } public int AreaId { set; get; } public int Sort { set; get; } public bool IsRAR { set; get; } public string About { set; get; } public string hTitle { set; get; } public string hKeywords { set; get; } public string hDescription { set; get; } public DateTime Addtime { set; get; } } }