using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Models.Views { public class AdvertisementModel { /// /// PK /// /// //public int? PK { get; set; } /// /// 广告ID /// /// public string ID { get; set; } /// /// 广告名称 /// /// public string Title { get; set; } /// /// 分类 /// /// public string Category { get; set; } /// /// 分类ID /// /// public int CategoryId { get; set; } /// /// 位置,PC端为4X8,移动端为2X3 /// /// public int Position { get; set; } /// /// 链接地址 /// /// public string Href { get; set; } /// /// 添加时间 /// /// public string AddTime { get; set; } /// /// 有效期 /// /// public string TermOfValidity { get; set; } /// /// 备注 /// /// public string Remark { get; set; } /// /// 是否启用 /// /// public bool? IsEnable { get; set; } /// /// 是否删除 /// /// public bool? IsDelete { get; set; } } }