using Mapster;
namespace Model
{
///
/// 项目 project
///
[SugarTable("project", "项目")]
[Tenant("0")]
public class Project
{
///
/// 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; }
///
/// LOGO
///
[SugarColumn(ColumnDescription = "LOGO", Length = 255, ColumnName = "logo")]
public string? logo { get; set; }
///
/// 项目名称
///
[SugarColumn(ColumnDescription = "项目名称", Length = 128, ColumnName = "project_name")]
public string? projectName { get; set; }
///
/// 微服务标记
///
[SugarColumn(ColumnDescription = "微服务标记", ColumnName = "micro_service_flag")]
public bool microServiceFlag { 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 = "应用端", ColumnName = "app_type")]
public int appType { get; set; }
///
/// 后端开发语言
///
[SugarColumn(ColumnDescription = "后端开发语言", Length = 32, ColumnName = "backend_language")]
public string? backendLanguage { get; set; }
///
/// 项目介绍
///
[SugarColumn(ColumnDescription = "项目介绍", Length = 255, ColumnName = "project_detail")]
public string? projectDetail { get; set; }
///
/// 使用功能
///
[SugarColumn(ColumnDescription = "使用功能", Length = 255, ColumnName = "feature_list")]
public string? featureList { get; set; }
///
/// 业务模块
///
[SugarColumn(ColumnDescription = "业务模块", Length = 255, ColumnName = "business_list")]
public string? businessList { get; set; }
///
/// 项目分组
///
[SugarColumn(ColumnDescription = "项目分组", ColumnName = "project_group_id")]
public int projectGroupId { get; set; }
///
/// 状态
///
[SugarColumn(ColumnDescription = "状态", ColumnName = "status")]
public int status { get; set; }
}
}