using Mapster; namespace Model { /// /// APP功能模块IOS代码 app_module_ios_code /// [SugarTable("app_module_ios_code", "APP功能模块IOS代码")] [Tenant("0")] public class AppModuleIosCode { /// /// 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; } /// /// 调用代码 /// [SugarColumn(ColumnDescription = "调用代码", ColumnName = "invoke_code")] public string? invokeCode { get; set; } /// /// 方法代码 /// [SugarColumn(ColumnDescription = "方法代码", ColumnName = "web_code")] public string? webCode { get; set; } /// /// 要引用的系统框架 /// [SugarColumn(ColumnDescription = "要引用的系统框架", ColumnName = "system_framework")] public string? systemFramework { get; set; } /// /// 权限代码 /// [SugarColumn(ColumnDescription = "权限代码", ColumnName = "right_code")] public string? rightCode { get; set; } /// /// 要引用的系统库 /// [SugarColumn(ColumnDescription = "要引用的系统库", ColumnName = "system_lib")] public string? systemLib { get; set; } /// /// 项目索引代码 /// [SugarColumn(ColumnDescription = "项目索引代码", ColumnName = "project_index_code")] public string? projectIndexCode { get; set; } /// /// AppDelegate引用 /// [SugarColumn(ColumnDescription = "AppDelegate引用", ColumnName = "app_delegate")] public string? appDelegate { get; set; } /// /// AppDelegate启动初始代码 /// [SugarColumn(ColumnDescription = "AppDelegate启动初始代码", ColumnName = "app_delegate_launch_code")] public string? appDelegateLaunchCode { get; set; } /// /// AppDelegate代理代码 /// [SugarColumn(ColumnDescription = "AppDelegate代理代码", ColumnName = "app_delegate_code")] public string? appDelegateCode { get; set; } /// /// entitlements代码 /// [SugarColumn(ColumnDescription = "entitlements代码", ColumnName = "entitlements_code")] public string? entitlementsCode { get; set; } /// /// AppDelegate引用继承 /// [SugarColumn(ColumnDescription = "AppDelegate引用继承", ColumnName = "app_delegate_add")] public string? appDelegateAdd { get; set; } /// /// AppDelegate启动初始异步代码 /// [SugarColumn(ColumnDescription = "AppDelegate启动初始异步代码", ColumnName = "app_delegate_launch_async_code")] public string? appDelegateLaunchAsyncCode { get; set; } } }