24 lines
653 B
C#
24 lines
653 B
C#
using SqlSugar;
|
|
|
|
namespace YBDevice.Entity
|
|
{
|
|
/// <summary>
|
|
/// 轮播图内容
|
|
/// </summary>
|
|
[SugarTable("YB_BannerContent", TableDescription = "轮播图内容", IsDisabledUpdateAll = false, IsDisabledDelete = true)]
|
|
public class YB_BannerContent
|
|
{
|
|
/// <summary>
|
|
/// 轮播图ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "轮播图ID")]
|
|
public System.Int32 BannerId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 内容
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "内容", ColumnDataType = "text")]
|
|
public System.String Content { get; set; }
|
|
}
|
|
}
|