using Mapster; namespace Model { /// /// 后台项目 background_project /// [SugarTable("background_project", "后台项目")] [Tenant("0")] public class BackgroundProject { /// /// 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 = "project_id")] public int projectId { get; set; } /// /// 后台项目标题 /// [SugarColumn(ColumnDescription = "后台项目标题", Length = 50, ColumnName = "project_title")] public string? projectTitle { get; set; } /// /// 后台项目名称 /// [SugarColumn(ColumnDescription = "后台项目名称", Length = 50, ColumnName = "project_name")] public string? projectName { get; set; } /// /// 后台项目简介 /// [SugarColumn(ColumnDescription = "后台项目简介", Length = 255, ColumnName = "project_detail")] public string? projectDetail { get; set; } } }