MeiRiYiCheng_1_old/YBDevice.Entity/DataModel/YB_BannerContent.cs

24 lines
653 B
C#
Raw Permalink Normal View History

2025-07-16 17:14:38 +08:00
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; }
}
}