NewGaoKaoApi/New_College.Model/Models/Advertisement.cs

36 lines
927 B
C#

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