using SqlSugar; namespace YBDevice.Entity { /// /// 小程序草稿 /// [SugarTable("YB_MiniProgramsDraft", TableDescription = "小程序草稿", IsDisabledUpdateAll = false, IsDisabledDelete = true)] public class YB_MiniProgramsDraft { /// /// /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public System.Int32 Id { get; set; } /// /// 草稿 id /// [SugarColumn(ColumnDescription = "草稿 id")] public System.Int32 DraftId { get; set; } /// /// 版本号,开发者自定义字段 /// [SugarColumn(ColumnDescription = "版本号,开发者自定义字段", ColumnDataType = "varchar(100)")] public System.String UserVersion { 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; } } }