using Mapster; namespace Model { /// /// APP静态资源 app_project_static /// [SugarTable("app_project_static", "APP静态资源")] [Tenant("0")] public class AppProjectStatic { /// /// 更新版本 /// [SugarColumn(ColumnDescription = "更新版本", ColumnName = "version_num")] public int versionNum { get; set; } /// /// 文件路径 /// [SugarColumn(ColumnDescription = "文件路径", Length = 200, ColumnName = "file_path")] public string? filePath { get; set; } /// /// 文件名 /// [SugarColumn(ColumnDescription = "文件名", Length = 50, ColumnName = "file_name")] public string? fileName { 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; } /// /// 版本ID /// [SugarColumn(ColumnDescription = "版本ID", ColumnName = "version_id")] public int versionId { get; set; } /// /// APP项目ID /// [SugarColumn(ColumnDescription = "APP项目ID", ColumnName = "app_id")] public int appId { get; set; } /// /// 文件大小 /// [SugarColumn(ColumnDescription = "文件大小", ColumnName = "file_size")] public int fileSize { get; set; } /// /// 文件类型 /// [SugarColumn(ColumnDescription = "文件类型", Length = 20, ColumnName = "file_type")] public string? fileType { get; set; } } }