using Mapster; namespace Model { /// /// APP项目版本 app_project_version /// [SugarTable("app_project_version", "APP项目版本")] [Tenant("0")] public class AppProjectVersion { /// /// 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; } /// /// APP项目ID /// [SugarColumn(ColumnDescription = "APP项目ID", IsPrimaryKey = true, ColumnName = "app_id")] public int appId { get; set; } /// /// 版本号 /// [SugarColumn(ColumnDescription = "版本号", Length = 20, ColumnName = "version_code")] public string? versionCode { get; set; } /// /// 版本名 /// [SugarColumn(ColumnDescription = "版本名", Length = 50, ColumnName = "version_name")] public string? versionName { get; set; } /// /// 前端项目版本 /// [SugarColumn(ColumnDescription = "前端项目版本", Length = 50, ColumnName = "frontend_version")] public string? frontendVersion { get; set; } } }