using Mapster;
namespace Model
{
///
/// 生成模板分类 make_template_gategory
///
[SugarTable("make_template_gategory", "生成模板分类")]
[Tenant("0")]
public class MakeTemplateGategory
{
///
/// 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; }
///
/// 分类名称
///
[SugarColumn(ColumnDescription = "分类名称", Length = 50, ColumnName = "gategory_name")]
public string? gategoryName { get; set; }
///
/// 父级ID
///
[SugarColumn(ColumnDescription = "父级ID", ColumnName = "parent_id")]
public int parentId { get; set; }
///
/// 分类介绍
///
[SugarColumn(ColumnDescription = "分类介绍", Length = 255, ColumnName = "gategory_detail")]
public string? gategoryDetail { get; set; }
}
}