using Mapster; namespace Model { /// /// APP功能模块文件 app_module_file /// [SugarTable("app_module_file", "APP功能模块文件")] [Tenant("0")] public class AppModuleFile { /// /// 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; } /// /// 功能模块ID /// [SugarColumn(ColumnDescription = "功能模块ID", ColumnName = "module_id")] public int moduleId { get; set; } /// /// APP类型 /// [SugarColumn(ColumnDescription = "APP类型", Length = 10, ColumnName = "app_type")] public string? appType { get; set; } /// /// 模板文件路径 /// [SugarColumn(ColumnDescription = "模板文件路径", Length = 255, ColumnName = "source_path")] public string? sourcePath { get; set; } /// /// 生成文件路径 /// [SugarColumn(ColumnDescription = "生成文件路径", Length = 255, ColumnName = "make_path")] public string? makePath { get; set; } } }