using SqlSugar; using System; namespace New_College.Model.Models { public class Advertisement : RootEntity { /// /// 广告图片 /// [SugarColumn(Length = 512, IsNullable = true, ColumnDataType = "nvarchar")] public string ImgUrl { get; set; } /// /// 广告标题 /// [SugarColumn(Length = 64, IsNullable = true, ColumnDataType = "nvarchar")] public string Title { get; set; } /// /// 广告链接 /// [SugarColumn(Length = 256, IsNullable = true, ColumnDataType = "nvarchar")] public string Url { get; set; } /// /// 备注 /// [SugarColumn(Length = int.MaxValue, IsNullable = true, ColumnDataType = "nvarchar")] public string Remark { get; set; } } }