|
@@ -0,0 +1,169 @@
|
|
|
|
|
+using Mapster;
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+namespace Model
|
|
|
|
|
+{
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// APP功能模块安卓代码 app_module_android_code
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [SugarTable("app_module_android_code", "APP功能模块安卓代码")]
|
|
|
|
|
+ [Tenant("0")]
|
|
|
|
|
+ public class AppModuleAndroidCode
|
|
|
|
|
+ {
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// ID
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "ID", IsPrimaryKey = true, IsIdentity = true, ColumnName = "id")]
|
|
|
|
|
+ public int id { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// 版本号
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "版本号", ColumnName = "version")]
|
|
|
|
|
+ public int version { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// 删除标记
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "删除标记", ColumnName = "del_flag")]
|
|
|
|
|
+ public int delFlag { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// 创建时间
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "创建时间", ColumnName = "create_time")]
|
|
|
|
|
+ public DateTime? createTime { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// 更新时间
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "更新时间", ColumnName = "update_time")]
|
|
|
|
|
+ public DateTime? updateTime { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// 创建人
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "创建人", Length = 32, ColumnName = "create_by")]
|
|
|
|
|
+ public string? createBy { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// 更新人
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "更新人", Length = 32, ColumnName = "update_by")]
|
|
|
|
|
+ public string? updateBy { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// 功能模块ID
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "功能模块ID", ColumnName = "module_id")]
|
|
|
|
|
+ public int moduleId { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// 主界面方法代码
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "主界面方法代码", ColumnName = "main_activity_code")]
|
|
|
|
|
+ public string? mainActivityCode { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// 内页方法代码
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "内页方法代码", ColumnName = "public_web_code")]
|
|
|
|
|
+ public string? publicWebCode { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// 回调方法代码
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "回调方法代码", ColumnName = "call_back_code")]
|
|
|
|
|
+ public string? callBackCode { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// 权限代码
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "权限代码", ColumnName = "right_code")]
|
|
|
|
|
+ public string? rightCode { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// 初始化代码
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "初始化代码", ColumnName = "init_code")]
|
|
|
|
|
+ public string? initCode { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// Gradle包导入代码
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "Gradle包导入代码", ColumnName = "gradle_import_code")]
|
|
|
|
|
+ public string? gradleImportCode { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// 主界面回调方法代码
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "主界面回调方法代码", ColumnName = "main_call_back_code")]
|
|
|
|
|
+ public string? mainCallBackCode { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// Web包导入代码
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "Web包导入代码", ColumnName = "web_import_code")]
|
|
|
|
|
+ public string? webImportCode { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// Fragment包导入代码
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "Fragment包导入代码", ColumnName = "fragment_import_code")]
|
|
|
|
|
+ public string? fragmentImportCode { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// MainActivity包导入代码
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "MainActivity包导入代码", ColumnName = "main_activity_import_code")]
|
|
|
|
|
+ public string? mainActivityImportCode { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// PublicActivity包导入代码
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "PublicActivity包导入代码", ColumnName = "public_web_activity_import_code")]
|
|
|
|
|
+ public string? publicWebActivityImportCode { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// MainApplication包导入代码
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "MainApplication包导入代码", ColumnName = "main_application_import_code")]
|
|
|
|
|
+ public string? mainApplicationImportCode { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// String参数配置代码
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "String参数配置代码", ColumnName = "strings_param_code")]
|
|
|
|
|
+ public string? stringsParamCode { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ /// <summary>
|
|
|
|
|
+ /// Manifets参数配置代码
|
|
|
|
|
+ /// </summary>
|
|
|
|
|
+ [SugarColumn(ColumnDescription = "Manifets参数配置代码", ColumnName = "manifets_param_code")]
|
|
|
|
|
+ public string? manifetsParamCode { get; set; }
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ }
|
|
|
|
|
+}
|