using SqlSugar;
namespace YBDevice.Entity
{
///
/// 小程序模版
///
[SugarTable("YB_MiniProgramsTpl", TableDescription = "小程序模版", IsDisabledUpdateAll = false, IsDisabledDelete = true)]
public class YB_MiniProgramsTpl
{
///
///
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public System.Int32 Id { get; set; }
///
/// 模板 id
///
[SugarColumn(ColumnDescription = "模板 id")]
public System.Int32 TemplateId { get; set; }
///
/// 模板版本号,开发者自定义字段
///
[SugarColumn(ColumnDescription = "模板版本号,开发者自定义字段", ColumnDataType = "varchar(100)")]
public System.String UsrVersion { get; set; }
///
/// 模板描述,开发者自定义字段
///
[SugarColumn(ColumnDescription = "模板描述,开发者自定义字段", ColumnDataType = "nvarchar(200)")]
public System.String UserDesc { get; set; }
///
/// 被添加为模板的时间
///
[SugarColumn(ColumnDescription = "被添加为模板的时间")]
public System.DateTime CreateTime { get; set; }
///
/// 同步时间
///
[SugarColumn(ColumnDescription = "同步时间")]
public System.DateTime SyncTime { get; set; }
}
}