using SqlSugar;
namespace YBDevice.Entity
{
///
/// 客户名下的公众号/小程序
///
[SugarTable("YB_BusinessOffice", TableDescription = "客户名下的公众号/小程序", IsDisabledUpdateAll = false, IsDisabledDelete = true)]
public class YB_BusinessOffice
{
///
/// 主键
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public System.Int32 Id { get; set; }
///
/// 客户ID
///
[SugarColumn(ColumnDescription = "客户ID")]
public System.Int32 BusinessId { get; set; }
///
/// 公众号appid
///
[SugarColumn(ColumnDescription = "公众号appid", ColumnDataType = "varchar(50)")]
public System.String AppId { get; set; }
///
/// 添加时间
///
[SugarColumn(ColumnDescription = "添加时间")]
public System.DateTime CreateTime { get; set; }
}
}