29 lines
749 B
C#
29 lines
749 B
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YBDevice.Entity
|
|
{
|
|
/// <summary>
|
|
/// 轮播图绑定的设备
|
|
/// </summary>
|
|
[SugarTable("YB_BannerEqu", TableDescription = "轮播图绑定的设备", IsDisabledUpdateAll = false, IsDisabledDelete = true)]
|
|
public class YB_BannerEqu
|
|
{
|
|
/// <summary>
|
|
/// 轮播图ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "轮播图ID")]
|
|
public int BannerId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设备ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "设备ID")]
|
|
public System.Int32 EquId { get; set; }
|
|
}
|
|
}
|