using Mapster; namespace Model { /// /// app版本管理 app_version /// [SugarTable("app_version", "app版本管理")] [Tenant("0")] public class AppVersion { /// /// 终端类型 /// [SugarColumn(ColumnDescription = "终端类型", Length = 10, ColumnName = "terminal_kind")] public string terminalKind { get; set; } /// /// 版本号 /// [SugarColumn(ColumnDescription = "版本号", Length = 20, ColumnName = "version_num")] public string versionNum { get; set; } /// /// 标题 /// [SugarColumn(ColumnDescription = "标题", Length = 50, ColumnName = "title")] public string title { get; set; } /// /// 更新信息 /// [SugarColumn(ColumnDescription = "更新信息", Length = 200, ColumnName = "info")] public string info { get; set; } /// /// 确定按钮文字 /// [SugarColumn(ColumnDescription = "确定按钮文字", Length = 10, ColumnName = "confirm_text")] public string confirmText { get; set; } /// /// 取消按钮文字 /// [SugarColumn(ColumnDescription = "取消按钮文字", Length = 10, ColumnName = "cancel_text")] public string cancelText { get; set; } /// /// 更新地址 /// [SugarColumn(ColumnDescription = "更新地址", Length = 500, ColumnName = "download_url")] public string downloadUrl { get; set; } /// /// ID /// [SugarColumn(ColumnDescription = "ID", IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")] public int id { get; set; } /// /// 状态 /// [SugarColumn(ColumnDescription = "状态", ColumnName = "status")] public int status { get; set; } /// /// 排序 /// [SugarColumn(ColumnDescription = "排序", ColumnName = "sort")] public int sort { get; set; } /// /// 版本号 /// [SugarColumn(ColumnDescription = "版本号", ColumnName = "version")] public int version { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnDescription = "创建时间", ColumnName = "create_date")] public DateTime? createDate { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnDescription = "更新时间", ColumnName = "update_date")] public DateTime? updateDate { get; set; } /// /// 分类 /// [SugarColumn(ColumnDescription = "分类", Length = 50, ColumnName = "kind")] public string kind { get; set; } } }