using Mapster; namespace Model { /// /// 资源版本配置 app_source_version /// [SugarTable("app_source_version", "资源版本配置")] [Tenant("0")] public class AppSourceVersion { /// /// 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 = 20, ColumnName = "app_version")] public string? appVersion { get; set; } /// /// 所属资源ID /// [SugarColumn(ColumnDescription = "所属资源ID", ColumnName = "source_id")] public int sourceId { get; set; } /// /// 备注 /// [SugarColumn(ColumnDescription = "备注", Length = 200, ColumnName = "note")] public string? note { get; set; } } }