using MC.ORM; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CP.Model { /// /// 专题图片 /// [TableName("Zt_Page"), PrimaryKey("Id")] public class ZtPage { public int Id { set; get; } public string ClassName { set; get; } public string Content { set; get; } public int PageId { set; get; } } }