using SqlSugar; using System; namespace Tiobon.Core.Model.Models { public class Advertisement : RootEntityTkey { /// /// 广告图片 /// [SugarColumn(Length = 512, IsNullable = true)] public string ImgUrl { get; set; } /// /// 广告标题 /// [SugarColumn(Length = 64, IsNullable = true)] public string Title { get; set; } /// /// 广告链接 /// [SugarColumn(Length = 256, IsNullable = true)] public string Url { get; set; } /// /// 备注 /// [SugarColumn(Length = 2000, IsNullable = true)] public string Remark { get; set; } /// /// 创建时间 /// public DateTime Createdate { get; set; } = DateTime.Now; } }