namespace ZR.Model.Public { /// /// 广告管理 /// [SugarTable("banner_config")] public class BannerConfig { /// /// id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// Title /// public string Title { get; set; } /// /// 说明 /// public string Content { get; set; } /// /// 链接 /// public string Link { get; set; } /// /// 图片 /// public string ImgUrl { get; set; } /// /// 跳转类型 0、不跳转 1、外链 2、内部跳转 /// public int JumpType { get; set; } /// /// 添加时间 /// public DateTime? AddTime { get; set; } /// /// 点击次数 /// public int? ClicksNumber { get; set; } /// /// 是否显示 /// public int ShowStatus { get; set; } /// /// 广告类型 /// public int AdType { get; set; } /// /// BeginTime /// public DateTime? BeginTime { get; set; } /// /// EndTime /// public DateTime? EndTime { get; set; } /// /// 排序id /// public int? SortId { get; set; } } }