using Mapster; namespace Model { /// /// 生成模板 make_template /// [SugarTable("make_template", "生成模板")] [Tenant("0")] public class MakeTemplate { /// /// ID /// [SugarColumn(ColumnDescription = "ID", IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")] public int id { get; set; } /// /// 版本号 /// [SugarColumn(ColumnDescription = "版本号", ColumnName = "version")] public int version { get; set; } /// /// 删除标记 /// [SugarColumn(ColumnDescription = "删除标记", ColumnName = "del_flag")] public int delFlag { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnDescription = "创建时间", ColumnName = "create_time")] public DateTime? createTime { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnDescription = "更新时间", ColumnName = "update_time")] public DateTime? updateTime { get; set; } /// /// 创建人 /// [SugarColumn(ColumnDescription = "创建人", Length = 32, ColumnName = "create_by")] public string? createBy { get; set; } /// /// 更新人 /// [SugarColumn(ColumnDescription = "更新人", Length = 32, ColumnName = "update_by")] public string? updateBy { get; set; } /// /// 分类ID /// [SugarColumn(ColumnDescription = "分类ID", ColumnName = "gategory_id")] public int gategoryId { get; set; } /// /// 模板名称 /// [SugarColumn(ColumnDescription = "模板名称", Length = 50, ColumnName = "template_name")] public string? templateName { get; set; } /// /// 模板介绍 /// [SugarColumn(ColumnDescription = "模板介绍", Length = 255, ColumnName = "template_detail")] public string? templateDetail { get; set; } /// /// 模板内容 /// [SugarColumn(ColumnDescription = "模板内容", ColumnName = "template_content")] public string? templateContent { get; set; } } }