using Mapster; namespace Model { /// /// APP项目 app_project /// [SugarTable("app_project", "APP项目")] [Tenant("0")] public class AppProject { /// /// 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名称 /// [SugarColumn(ColumnDescription = "APP名称", Length = 10, ColumnName = "app_name")] public string? appName { get; set; } /// /// APP介绍 /// [SugarColumn(ColumnDescription = "APP介绍", Length = 255, ColumnName = "app_detail")] public string? appDetail { get; set; } /// /// APP终端类型 /// [SugarColumn(ColumnDescription = "APP终端类型", Length = 20, ColumnName = "app_kind")] public string? appKind { get; set; } /// /// 包名 /// [SugarColumn(ColumnDescription = "包名", Length = 50, ColumnName = "package_name")] public string? packageName { get; set; } /// /// APP图标 /// [SugarColumn(ColumnDescription = "APP图标", Length = 200, ColumnName = "app_icon")] public string? appIcon { get; set; } /// /// APP启动图 /// [SugarColumn(ColumnDescription = "APP启动图", Length = 200, ColumnName = "app_start_bg")] public string? appStartBg { get; set; } /// /// APP启动介绍图 /// [SugarColumn(ColumnDescription = "APP启动介绍图", Length = 200, ColumnName = "app_start_list_photo")] public string? appStartListPhoto { get; set; } /// /// 请求接口主机头 /// [SugarColumn(ColumnDescription = "请求接口主机头", Length = 200, ColumnName = "api_host")] public string? apiHost { get; set; } /// /// 静态文件 /// [SugarColumn(ColumnDescription = "静态文件", Length = 200, ColumnName = "static_file")] public string? staticFile { get; set; } /// /// 首次加载界面 /// [SugarColumn(ColumnDescription = "首次加载界面", Length = 100, ColumnName = "init_page")] public string? initPage { get; set; } } }