mcms-5.2.7.sql 610 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819
  1. SET NAMES utf8mb4;
  2. SET FOREIGN_KEY_CHECKS = 0;
  3. -- ----------------------------
  4. -- Table structure for app
  5. -- ----------------------------
  6. DROP TABLE IF EXISTS `app`;
  7. CREATE TABLE `app` (
  8. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '站点id',
  9. `app_name` varchar(60) NOT NULL COMMENT '站点名称',
  10. `app_url` varchar(200) NOT NULL COMMENT '站点域名,多个回车换行显示',
  11. `app_logo` varchar(4000) DEFAULT NULL COMMENT '网站logo',
  12. `app_keyword` varchar(500) DEFAULT NULL COMMENT '站点关键字',
  13. `app_copyright` varchar(500) DEFAULT NULL COMMENT '站点版权信息',
  14. `app_style` varchar(50) DEFAULT NULL COMMENT '站点风格',
  15. `app_description` varchar(500) DEFAULT NULL COMMENT '描述',
  16. `app_pay` varchar(300) DEFAULT NULL COMMENT '费用清单',
  17. `app_state` int(1) unsigned NOT NULL DEFAULT '0' COMMENT '0运行中 1已停止 ',
  18. `app_datetime` datetime DEFAULT NULL COMMENT '创建时间',
  19. `app_pay_date` datetime DEFAULT NULL COMMENT '应用续费时间',
  20. `app_dir` varchar(10) DEFAULT NULL COMMENT '网站生成的目录',
  21. `update_date` datetime DEFAULT NULL COMMENT '修改时间',
  22. `update_by` varchar(11) DEFAULT NULL COMMENT '修改人',
  23. `create_date` datetime DEFAULT NULL COMMENT '创建时间',
  24. `create_by` varchar(11) DEFAULT NULL,
  25. `del` int(1) DEFAULT '0',
  26. PRIMARY KEY (`id`) USING BTREE
  27. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='应用表';
  28. -- ----------------------------
  29. -- Records of app
  30. -- ----------------------------
  31. BEGIN;
  32. INSERT INTO `app` VALUES (1, '铭飞MCms(5.2.6)', 'http://localhost:8080/', '[{\"url\":\"/upload/1/appLogo/1609397756549.png\",\"name\":\"1593834123492.png\",\"path\":\"/upload/1/appLogo/1609397756549.png\",\"uid\":1609397756411,\"status\":\"success\"}]', '铭飞MCMS', '版权所有 ©铭飞科技有限公司2012-2019 保留一切权利。', 'default', '铭飞MCMS', '', 0, NULL, '2019-11-17 00:00:00', 'web', '2022-02-28 10:28:55', '57', NULL, '', 0);
  33. COMMIT;
  34. -- ----------------------------
  35. -- Table structure for cms_category
  36. -- ----------------------------
  37. DROP TABLE IF EXISTS `cms_category`;
  38. CREATE TABLE `cms_category` (
  39. `id` bigint(20) unsigned NOT NULL,
  40. `category_id` bigint(20) unsigned DEFAULT NULL COMMENT '所属栏目',
  41. `leaf` int(1) DEFAULT NULL COMMENT '是否是叶子节点',
  42. `top_id` bigint(20) DEFAULT NULL COMMENT '顶级id',
  43. `dict_id` int(11) DEFAULT NULL COMMENT '字典对应编号',
  44. `mdiy_model_id` int(11) DEFAULT NULL COMMENT '栏目管理的内容模型id',
  45. `category_parent_ids` varchar(255) DEFAULT NULL COMMENT '父类型编号,多个id逗号',
  46. `category_title` varchar(255) DEFAULT NULL COMMENT '栏目管理名称',
  47. `category_img` varchar(2000) DEFAULT NULL COMMENT '缩略图',
  48. `category_flag` varchar(255) DEFAULT NULL COMMENT '栏目属性',
  49. `category_descrip` varchar(500) DEFAULT NULL COMMENT '栏目管理描述',
  50. `category_keyword` varchar(300) DEFAULT NULL COMMENT '栏目管理关键字',
  51. `category_path` varchar(255) DEFAULT NULL COMMENT '栏目路径',
  52. `category_diy_url` varchar(255) DEFAULT NULL COMMENT '自定义链接',
  53. `category_url` varchar(50) DEFAULT NULL COMMENT '内容模板',
  54. `category_list_url` varchar(50) DEFAULT NULL COMMENT '列表模板',
  55. `category_type` varchar(10) DEFAULT NULL COMMENT '栏目管理属性',
  56. `category_pinyin` varchar(255) DEFAULT NULL COMMENT '栏目拼音',
  57. `category_sort` int(11) DEFAULT NULL COMMENT '自定义顺序',
  58. `update_date` datetime DEFAULT NULL COMMENT '修改时间',
  59. `update_by` varchar(11) DEFAULT NULL COMMENT '修改人',
  60. `create_date` datetime DEFAULT NULL COMMENT '创建时间',
  61. `create_by` varchar(11) DEFAULT NULL COMMENT '创建人',
  62. `del` int(1) DEFAULT '0' COMMENT '删除标记',
  63. PRIMARY KEY (`id`) USING BTREE,
  64. KEY `idx_category_id` (`category_id`)
  65. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='分类';
  66. -- ----------------------------
  67. -- Records of cms_category
  68. -- ----------------------------
  69. BEGIN;
  70. INSERT INTO `cms_category` VALUES (1329257213283344385, NULL, 1, 0, NULL, NULL, NULL, '公司产品', '[]', 'nav', '', '', '/product', '', 'product-detail.htm', 'product-list.htm', '1', 'product', 0, '2021-10-21 08:39:21', '57', '2020-11-19 10:56:31', '57', 0);
  71. INSERT INTO `cms_category` VALUES (1329257282518720513, NULL, 0, 0, NULL, NULL, NULL, '新闻动态', '[]', 'nav', '', '', '/news', '', 'news-detail.htm', 'news-list.htm', '1', 'news', 0, '2020-12-30 05:06:46', '57', '2020-11-19 10:56:47', '57', 0);
  72. INSERT INTO `cms_category` VALUES (1329257498923835394, NULL, 0, 0, NULL, NULL, NULL, '关于我们', '[]', 'nav', '', '', '/gywm', '/gywm/lianxiwomen/index.html', 'about.htm', '', '3', 'gywm', 0, '2020-12-31 03:43:54', '57', '2020-11-19 10:57:39', '57', 0);
  73. INSERT INTO `cms_category` VALUES (1329257594591715329, 1329257498923835394, 1, 1329257498923835394, NULL, NULL, '1329257498923835394', '联系我们', '[]', 'd', '', '', '/gywm/lianxiwomen', '', 'about.htm', '', '2', 'lianxiwomen', 0, '2020-11-19 18:33:02', '57', '2020-11-19 10:58:02', '57', 0);
  74. INSERT INTO `cms_category` VALUES (1329257757913718785, 1329257213283344385, 1, 1329257213283344385, NULL, NULL, '1329257213283344385', '开源产品', '[]', '', '', '', '/product/kycp', '', 'product-detail.htm', 'product-list.htm', '1', 'kycp', 0, '2021-05-28 16:27:25', '57', '2020-11-19 10:58:41', '57', 0);
  75. INSERT INTO `cms_category` VALUES (1329257820769558530, 1329257213283344385, 1, 1329257213283344385, NULL, NULL, '1329257213283344385', '行业产品', '[]', '', '', '', '/product/hycp', '', 'product-detail.htm', 'product-list.htm', '1', 'hycp', 0, '2020-12-30 20:23:58', '57', '2020-11-19 10:58:56', '57', 0);
  76. INSERT INTO `cms_category` VALUES (1329258628990967809, 1329257282518720513, 1, 1329257282518720513, NULL, NULL, '1329257282518720513', '公司动态', '[]', '', '', '', '/news/gsdt', '', 'news-detail.htm', 'news-list.htm', '1', 'gsdt', 0, '2020-11-19 18:32:23', '57', '2020-11-19 11:02:08', '57', 0);
  77. INSERT INTO `cms_category` VALUES (1329258744783118337, 1329257282518720513, 1, 1329257282518720513, NULL, NULL, '1329257282518720513', '行业动态', '[]', '', '行业动态', '', '/news/xingyedongtai', '', 'news-detail.htm', 'news-list.htm', '1', 'xingyedongtai', 0, '2021-01-27 04:32:56', '57', '2020-11-19 11:02:36', '57', 0);
  78. INSERT INTO `cms_category` VALUES (1329259260493766658, 1329257498923835394, 1, 1329257498923835394, NULL, NULL, '1329257498923835394', '公司介绍', '[]', '', '', '', '/gywm/gongsijieshao', '', 'about.htm', '', '2', 'gongsijieshao', 0, '2020-11-19 18:33:10', '57', '2020-11-19 11:04:39', '57', 0);
  79. INSERT INTO `cms_category` VALUES (1329316146811314177, 1329257213283344385, 1, 1329257213283344385, NULL, NULL, '1329257213283344385', '平台产品', '[]', '', '', '', '/product/pingtaichanpin', '', 'product-detail.htm', 'product-list.htm', '1', 'pingtaichanpin', 0, '2020-12-30 20:24:10', '57', '2020-11-19 14:50:42', '57', 0);
  80. INSERT INTO `cms_category` VALUES (1329357285870346241, NULL, 1, 0, NULL, NULL, NULL, '幻灯', '[]', '', '', '', '/huandeng', '', 'news-detail.htm', 'news-list.htm', '1', 'huandeng', 0, '2020-11-19 18:33:47', '57', '2020-11-19 17:34:10', '57', 0);
  81. COMMIT;
  82. -- ----------------------------
  83. -- Table structure for cms_content
  84. -- ----------------------------
  85. DROP TABLE IF EXISTS `cms_content`;
  86. CREATE TABLE `cms_content` (
  87. `id` bigint(20) unsigned NOT NULL,
  88. `category_id` bigint(20) unsigned DEFAULT NULL COMMENT '所属栏目',
  89. `content_details` longtext COMMENT '文章内容',
  90. `content_title` varchar(255) DEFAULT NULL COMMENT '文章标题',
  91. `content_url` varchar(255) DEFAULT NULL COMMENT '文章跳转链接地址',
  92. `content_keyword` varchar(255) DEFAULT NULL COMMENT '关键字',
  93. `content_description` varchar(400) DEFAULT NULL COMMENT '描述',
  94. `content_img` varchar(1000) DEFAULT NULL COMMENT '文章缩略图',
  95. `content_source` varchar(255) DEFAULT NULL COMMENT '文章来源',
  96. `content_author` varchar(255) DEFAULT NULL COMMENT '文章作者',
  97. `content_display` varchar(10) DEFAULT '0' COMMENT '是否显示0显示 1不显示',
  98. `content_type` varchar(100) DEFAULT NULL COMMENT '文章类型',
  99. `content_datetime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '发布时间',
  100. `content_sort` int(11) DEFAULT NULL COMMENT '自定义顺序',
  101. `content_hit` int(22) DEFAULT '0' COMMENT '点击次数',
  102. `update_date` datetime DEFAULT NULL COMMENT '修改时间',
  103. `update_by` varchar(11) DEFAULT NULL COMMENT '修改人',
  104. `create_date` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
  105. `create_by` varchar(11) DEFAULT NULL COMMENT '创建人',
  106. `del` int(1) DEFAULT '0' COMMENT '删除标记',
  107. PRIMARY KEY (`id`) USING BTREE,
  108. KEY `fk_category_id` (`category_id`),
  109. CONSTRAINT `fk_category_id` FOREIGN KEY (`category_id`) REFERENCES `cms_category` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION
  110. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='文章';
  111. -- ----------------------------
  112. -- Records of cms_content
  113. -- ----------------------------
  114. BEGIN;
  115. INSERT INTO `cms_content` VALUES (1329315860382294018, 1329257820769558530, '<p><img src=\"/upload/1/cms/content/editor/1609809963757.png\" title=\"1609809963757.png\" alt=\"image.png\"/></p>', 'MEC工程造价咨询管理软件', NULL, '', '支持分公司、跨地域协同管理,支持微信审批、通知更即时,与钉钉一样的审批,让审批流程更简单', '[{\"url\":\"blob:http://localhost:8080/605fb4e4-7874-4f30-9eb6-87c8dc4b046f\",\"name\":\"a.png\",\"path\":\"/upload/1/cms/content/1609837720097.png\",\"uid\":1609837720054,\"status\":\"success\"}]', '', '', '0', 'c', '2022-02-27 11:42:04', 0, NULL, '2022-02-27 11:42:04', '57', '2022-02-27 11:41:36', '57', 0);
  116. INSERT INTO `cms_content` VALUES (1329315928002863105, 1329257820769558530, '<p>1、BIM引擎</p><p>2、项目管理</p><p>3、计划管理</p><p>4、进度管理</p><p>5、质量管理</p><p>6、填报管理</p>', 'BIMCms施工管理软件', NULL, '', 'BIM数字化构件施工模型', '[{\"url\":\"blob:http://localhost:8080/e267453c-5762-40af-ba47-b7979e11421e\",\"name\":\"a.png\",\"path\":\"/upload/1/cms/content/1609837616948.png\",\"uid\":1609837616874,\"status\":\"success\"}]', '', '', '0', 'c', '2022-02-27 11:42:04', 0, NULL, '2022-02-27 11:42:04', '57', '2022-02-27 11:41:36', '57', 0);
  117. INSERT INTO `cms_content` VALUES (1329316558960402434, 1329316146811314177, '<p>1、项目管理<br/>2、任务管理</p><p>3、日志管理</p><p>4、周报管理</p>', 'PM项目管理', NULL, '', '敏捷开发模式管理', '[{\"url\":\"blob:http://localhost:8080/ca98a218-a251-4eb5-b1be-7c4d0078a899\",\"name\":\"a.png\",\"path\":\"/upload/1/cms/content/1609838116473.png\",\"uid\":1609838116438,\"status\":\"success\"}]', '', '', '0', 'c', '2022-02-27 11:42:04', 0, NULL, '2022-02-27 11:42:04', '57', '2022-02-27 11:41:36', '57', 0);
  118. INSERT INTO `cms_content` VALUES (1329316838384934914, 1329316146811314177, '<p>1、后台页面自动生成</p><p>2、自动生成CURD方法</p><p>3、自定义模版代码生成</p><p>4、自定义表单代码生成</p><p>5、审批代码生成</p>', 'Code代码生成器', NULL, '', '降低后端代码开发成本', '[{\"url\":\"blob:http://localhost:8080/00ddf7e2-b231-4faf-875b-bfa12927ef14\",\"name\":\"a.png\",\"path\":\"/upload/1/cms/content/1609838011513.png\",\"uid\":1609838011372,\"status\":\"success\"}]', '', '', '0', 'c', '2022-02-27 11:42:04', 0, NULL, '2022-02-27 11:42:04', '57', '2022-02-27 11:41:36', '57', 0);
  119. INSERT INTO `cms_content` VALUES (1329316887084998658, 1329316146811314177, '<p>前端设计辅助工具</p>', 'Designer设计器', NULL, '', '降低前端开发成本,可以直接导出网站模版,也能给前端提供设计布局参考', '[{\"url\":\"blob:http://localhost:8080/201b456f-445d-4e36-9db6-08efc781b7c8\",\"name\":\"a.png\",\"path\":\"/upload/1/cms/content/1609837914855.png\",\"uid\":1609837914821,\"status\":\"success\"}]', '', '', '0', 'c', '2022-02-27 11:42:04', 0, NULL, '2022-02-27 11:42:04', '57', '2022-02-27 11:41:36', '57', 0);
  120. INSERT INTO `cms_content` VALUES (1329316951228489729, 1329316146811314177, '<p>提供上百套免费的模版,提供适用好用的插件</p>', 'Store应用市场', NULL, '', '价值源自分享!', '[{\"url\":\"blob:http://localhost:8080/445e83d9-0a51-40e5-865c-94e6da54fb3d\",\"name\":\"a.png\",\"path\":\"/upload/1/cms/content/1609836029087.png\",\"uid\":1609836028997,\"status\":\"success\"}]', '', '', '0', 'c', '2022-02-27 11:42:04', 0, NULL, '2022-02-27 11:42:04', '57', '2022-02-27 11:41:36', '57', 0);
  121. INSERT INTO `cms_content` VALUES (1329374638616158210, 1329258628990967809, '<p><br/></p><ul style=\"box-sizing: border-box; margin-bottom: 0.85em; font-size: 14px; padding: 0px 0px 0px 2em; color: rgb(51, 51, 51); font-family: Roboto, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.3px; white-space: normal; background-color: rgb(250, 250, 250);\" class=\" list-paddingleft-2\"><li><p>【框架】增加MybatisPlus支持</p></li><li><p>【新增】静态化文件夹配置(html)</p></li><li><p>【新增】静态化站点文件夹配置(web),html/1-&gt;自定义/自定义</p></li><li><p>【优化】模版管理修改</p></li><li><p>【优化】标签修改,更灵活的支持if等逻辑判断</p></li><li><p>【优化】解析速度再次提升</p></li><li><p>【优化】栏目管理操作功能优化</p></li><li><p>【优化】栏目生成链接优化,采用拼音格式</p></li><li><p>【修复】bug修复,具体参考开源中国ISSUES</p></li><li><p>5.1升级5.2.0步骤(1、同步代码;2、导入5.1-to-5.2.0-mysql.sql;3、Store更新内容插件)</p></li></ul><p><br/></p>', '5.2.0稳定版本发布', NULL, '', '', '[{\"url\":\"blob:http://localhost:8080/e246f0df-08a8-41e8-9494-17db1970ba0d\",\"name\":\"5.png\",\"path\":\"/upload/1/cms/content/1609825459624.png\",\"uid\":1609825459171,\"status\":\"success\"}]', '', '', '0', 'c', '2022-02-27 11:42:04', 0, 19, '2022-02-27 11:42:04', '57', '2022-02-27 11:41:36', '57', 0);
  122. INSERT INTO `cms_content` VALUES (1329374684459900929, 1329258628990967809, '<p>http://doc.mingsoft.net/plugs-cms/</p>', 'mcms在线适用手册', NULL, '', 'MCms内容插件提供最基本的菜单、权限、角色、栏目、内容、静态化、等常用功能。', '[{\"url\":\"blob:http://localhost:8080/1a5a3605-d831-4123-8c18-de8197aa7295\",\"name\":\"a.png\",\"path\":\"/upload/1/cms/content/1609835836996.png\",\"uid\":1609835836971,\"status\":\"success\"}]', '', '', '0', '', '2022-02-27 11:42:04', 0, 9, '2022-02-27 11:42:04', '57', '2022-02-27 11:41:36', '57', 0);
  123. INSERT INTO `cms_content` VALUES (1329374724146405378, 1329258744783118337, '<p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">国内的开源环境已经相当好,但是国内开发注重是应用,创新有但不多,从榜单可以看出,专门搞技术的还是少数,结合项目实践的站大多数,分享给你们,架构的时候可以参考这些解决方案,传送门:gogeeks.cn</p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">zheng征项目(stars 5.6k)</p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">基于Spring+SpringMVC+Mybatis分布式敏捷开发系统架构,提供整套公共微服务服务模块:集中权限管理(单点登录)、内容管理、支付中心、用户管理(支持第三方登录)、微信平台、存储系统、配置中心、日志分析、任务和通知等,支持服务治理、监控和追踪,努力为中小型企业打造全方位J2EE企业级开发解决方案。</p><p><img class=\"large\" src=\"/upload/1/cms/content/editor/1610000831977.jpg\" alt=\"\" data-loadfunc=\"0\" data-loaded=\"0\" style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; height: auto;\"/></p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">地址:https://gitee.com/shuzheng/zheng</p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">JFinal(stars 4.8k)</p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">JFinal 是基于 Java 语言的极速 WEB + ORM 框架,其核心设计目标是开发迅速、代码量少、学习简单、功能强大、轻量级、易扩展、Restful。在拥有Java语言所有优势的同时再拥有ruby、python、php等动态语言的开发效率!为您节约更多时间,去陪恋人、家人和朋友 :)</p><p><img class=\"large\" src=\"/upload/1/cms/content/editor/1610000832098.jpg\" alt=\"\" data-loadfunc=\"0\" data-loaded=\"0\" style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; height: auto;\"/></p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">地址:http://www.jfinal.com/</p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">SpringBoot-Learning(stars 4.6k)</p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">Spring Boot教程与Spring Cloud教程</p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">地址:https://gitee.com/didispace/SpringBoot-Learning</p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">iBase4J(stars 4.1k)</p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">AVA分布式快速开发平台:SpringBoot,SpringMVC,Mybatis,mybatis-plus,motan/dubbo分布式,Redis缓存,Shiro权限管理,Spring-Session单点登录,Quartz分布式集群调度,Restful服务,QQ/微信登录,App token登录,微信/支付宝支付;日期转换、数据类型转换、序列化、汉字转拼音、身份证号码验证、数字转人民币、发送短信、发送邮件、加密解密、图片处理、excel导入导出、FTP/SFTP/fastDFS上传下载、二维码、XML读写、高精度计算、系统配置工具类等等。</p><p><img class=\"large\" src=\"/upload/1/cms/content/editor/1610000832267.jpg\" alt=\"\" data-loadfunc=\"0\" data-loaded=\"0\" style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; height: auto;\"/></p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">地址:https://gitee.com/iBase4J/iBase4J</p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">JeeSite(stars 3.1k)</p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">JeeSite 是一个企业信息化开发基础平台,Java EE(J2EE)快速开发框架,使用经典技术组合(Spring、Spring MVC、Apache Shiro、MyBatis、Bootstrap UI),包括核心模块如:组织机构、角色用户、权限授权、数据权限、内容管理、工作流等。</p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">地址:https://gitee.com/thinkgem/jeesite</p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">jeewx(stars 2.6k)</p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">Jeewx是一款开源、免费的微信管家系统(多触点管理平台)。采用JAVA语言,支持微信公众号、微信企业号、支付宝服务窗、QQ公众号、微博账号等多触点管理。Jeewx实现了微信、支付窗、微信企业号、微博等触点的基础管理功能,便于用户二次开发。2014年荣获CSDN开发商大会第一名</p><p><img class=\"large\" src=\"/upload/1/cms/content/editor/1610000832393.jpg\" alt=\"\" data-loadfunc=\"0\" data-loaded=\"0\" style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; height: auto;\"/></p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">地址:https://gitee.com/jeecg/jeewx</p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">MCMS建站系统(stars 2.5k)</p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">完整开源!Java快速开发平台!基于Spring、SpringMVC、Mybatis架构,MStore提供更多好用的插件与模板(文章、商城、微信、论坛、会员、评论、支付、积分、工作流、任务调度等,同时提供上百套免费模板任意选择),价值源自分享!铭飞系统不仅一套简单好用的开源系统、更是一整套优质的开源生态内容体系。铭飞的使命就是降低开发成本提高开发效率,提供全方位的企业级开发解决方案,每月28定期更新版本</p><p><img class=\"large\" src=\"/upload/1/cms/content/editor/1610000832647.jpg\" alt=\"\" data-loadfunc=\"0\" data-loaded=\"0\" style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; height: auto;\"/></p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">地址:https://gitee.com/mingSoft/MCMS</p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">t-io(stars 2.3k)</p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">t-io是基于jdk aio实现的易学易用、稳定耐操、性能强悍、将多线程运用到极致、内置功能丰富、核心代码只有3000多行(2017年05月13号统计)的即时通讯框架(广义上的即时通讯,并非指im),字母 t 寓意talent。</p><p><img class=\"large\" src=\"/upload/1/cms/content/editor/1610000832783.jpg\" alt=\"\" data-loadfunc=\"0\" data-loaded=\"0\" style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; height: auto;\"/></p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">地址:https://gitee.com/tywo45/t-io</p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">CMS(stars 2.1k)</p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">一款使用Java语言开发的CMS,使用了Spring MVC,Spring,MyBatis等流行框架,提供首页大图管理、目录管理、文章管理和管理员管理等功能。是学习和二次开发的首选</p><p><img class=\"large\" src=\"/upload/1/cms/content/editor/1610000832990.jpg\" alt=\"\" data-loadfunc=\"0\" data-loaded=\"0\" style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; height: auto;\"/></p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">地址:https://gitee.com/shishuo/CMS</p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">hutool(stars 2k)</p><p style=\"margin: 10px auto; padding: 0px; font-family: &quot;PingFang SC&quot;, &quot;Microsoft YaHei&quot;, &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 13px; white-space: normal; background-color: rgb(245, 245, 245);\">一个Java基础工具类,对文件、流、加密解密、转码、正则、线程、XML等JDK方法进行封装,组成各种Util工具类,同时提供以下组件: 1. 布隆过滤 2. 缓存 3. 数据库ORM(基于ActiveRecord思想)4. HTTP客户端 5. IO 6. JSON 7. 日志 8. System(JVM和系统信息等) 9. Setting(一种扩展Properties的配置文件)</p><p><img class=\"large\" src=\"/upload/1/cms/content/editor/1610000833108.jpg\" alt=\"\" data-loadfunc=\"0\" data-loaded=\"0\" style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; height: auto;\"/></p><p><br/></p>', '国内最火的10款Java开源项目,都是国人开发,CMS居多', NULL, '', '价值源自分享!铭飞系统不仅一套简单好用的开源系统、更是一整套优质的开源生态内容体系。铭飞的使命就是降低开发成本提高开发效率,提供全方位的企业级开发解决方案,每月28定期更新版本', '[{\"url\":\"/upload/1/cms/content/1609835640813.jpeg\",\"name\":\"a.jpeg\",\"path\":\"/upload/1/cms/content/1609835640813.jpeg\",\"uid\":1609835640738,\"status\":\"success\"}]', '', '', '0', '', '2022-02-27 11:42:04', 0, 22, '2022-02-27 11:42:04', '57', '2022-02-27 11:41:36', '57', 0);
  124. INSERT INTO `cms_content` VALUES (1329374855797219329, 1329259260493766658, '<p style=\"text-align: center;\"><span class=\"title-big\" style=\"box-sizing: inherit; font-family: inherit; padding-bottom: 0px; text-align: center; overflow-wrap: break-word; display: inline-block; font-size: 40px; padding-top: 0px; margin-top: 80px; line-height: 28px; text-rendering: optimizelegibility; -webkit-font-smoothing: antialiased; margin-bottom: 24px;\">关于我们</span><span style=\"box-sizing: inherit; font-family: inherit; padding-bottom: 0px; text-align: center; overflow-wrap: break-word; display: inline-block; font-size: 16px; padding-top: 0px; margin-top: 60px; line-height: 28px;\"></span></p><p style=\"box-sizing: inherit; margin-top: 0px; margin-bottom: 0px; padding: 0px; text-indent: 2em;\">团队成立于2012年,是一群不断的以技术创新与软件研发为核心的学习型技术团队。团队在软件研发的技术领域,不断地积累通用、实用、好用的通用功能插件,实现系统模块化集成开发解决方案。方案适用于传统互联网、移动互联网、物联网,不仅大大降低软件产品在研发投入的成本,更能加快软件的研发进程!</p><p style=\"text-align: center;\"><span class=\"title-big\" style=\"box-sizing: inherit; text-align: center; overflow-wrap: break-word; display: inline-block; text-rendering: optimizelegibility; -webkit-font-smoothing: antialiased; font-family: inherit; padding-bottom: 0px; font-size: 40px; margin-bottom: 24px; padding-top: 0px; margin-top: 80px;\">使命</span></p><p style=\"text-align: center;\"><span class=\"mission-desc\" style=\"box-sizing: inherit; font-family: inherit; padding-bottom: 0px; overflow-wrap: break-word; display: inline-block; font-size: 24px; margin-bottom: 0px; padding-top: 0px; margin-top: 0px;\">降低软件研发成本</span></p><p><span class=\"mission-desc\" style=\"box-sizing: inherit; font-family: inherit; padding-bottom: 0px; overflow-wrap: break-word; display: inline-block; font-size: 24px; margin-bottom: 0px; padding-top: 0px; margin-top: 0px;\"><br/></span></p><p><span class=\"mission-desc\" style=\"box-sizing: inherit; font-family: inherit; padding-bottom: 0px; overflow-wrap: break-word; display: inline-block; font-size: 24px; margin-bottom: 0px; padding-top: 0px; margin-top: 0px;\"></span></p><table><tbody><tr class=\"firstRow\"><td width=\"427\" valign=\"top\" style=\"word-break: break-all;\"><p><img title=\"\" alt=\"\" src=\"https://www.mingsoft.net/template/1/ms/images/1596450814375.svg\" class=\"img\" style=\"box-sizing: inherit; height: 232.94px; max-width: 100%; width: 380px; margin-top: 0px;\"/></p><p>只要你是Java开发人员,或是前端开发人员、设计人员,都可以使用我们平台提供的服务,开发人员可以使用我们的平台快速生成业务代码,设计人员可以在线分享设计作品获取收益</p></td><td valign=\"top\" style=\"word-break: break-all;\" width=\"426\"><p><img title=\"\" alt=\"\" src=\"https://www.mingsoft.net/template/1/ms/images/1596450883586.svg\" class=\"img\" style=\"box-sizing: inherit; height: 232.94px; max-width: 100%; width: 380px; margin-top: 0px;\"/></p><p>我们能帮助企业快速的进行业务系统开发,不管是从代码质量、效率都会有极大都提升。平台提供的业务都具备协同操作都特性,也能很好的提高与规范企业内部开发协同,帮助企业提高生产离</p></td><td width=\"427\" valign=\"top\" style=\"word-break: break-all;\"><p><img title=\"\" alt=\"\" src=\"https://www.mingsoft.net/template/1/ms/images/1596451227338.svg\" class=\"img\" style=\"box-sizing: inherit; height: 232.94px; max-width: 100%; width: 380px; margin-top: 0px;\"/></p><p>我们给政府事业单位提供优质的技术支持服务,提供更安全、更稳定的核心业务系统架构。通用的组件化开发的模式能满足政府内部日常化管理需求,同时大大降低政府采购的成本</p></td></tr></tbody></table><p><span class=\"mission-desc\" style=\"box-sizing: inherit; font-family: inherit; padding-bottom: 0px; overflow-wrap: break-word; display: inline-block; font-size: 24px; margin-bottom: 0px; padding-top: 0px; margin-top: 0px;\"></span><br/></p><p><br/></p><p><br/></p><p style=\"text-align: center;\"><span style=\"font-family: inherit; font-size: 40px; text-align: center;\">价值观</span><br/></p><p><span style=\"font-family: inherit; font-size: 40px; text-align: center;\"><br/></span></p><p style=\"text-align: center;\"><span class=\"mission-desc\" style=\"box-sizing: inherit; font-family: inherit; padding-bottom: 0px; overflow-wrap: break-word; display: inline-block; font-size: 24px; margin-bottom: 0px; padding-top: 0px; margin-top: 0px;\">价值源自分享</span></p><p style=\"text-align: center;\"><span class=\"title-big\" style=\"box-sizing: inherit; text-align: center; overflow-wrap: break-word; display: inline-block; text-rendering: optimizelegibility; -webkit-font-smoothing: antialiased; font-family: inherit; padding-bottom: 0px; font-size: 40px; margin-bottom: 24px; padding-top: 0px; margin-top: 80px;\">愿景</span></p><p style=\"text-align: center;\"><span class=\"mission-desc\" style=\"box-sizing: inherit; font-family: inherit; padding-bottom: 0px; overflow-wrap: break-word; display: inline-block; font-size: 24px; margin-bottom: 0px; padding-top: 0px; margin-top: 0px;\">享自由、享生活</span></p><p><br/></p>', '公司介绍', NULL, '关键字', '团队成立于2012年,是一群不断的以技术创新与软件研发为核心的学习型技术团队。团队在软件研发的技术领域,不断地积累通用、实用、好用的通用功能插件,实现系统模块化集成开发解决方案。方案适用于传统互联网、移动互联网、物联网,不仅大大降低软件产品在研发投入的成本,更能加快软件的研发进程!', '[{\"url\":\"blob:http://localhost:8080/a409cd5f-ba90-4fba-b8e3-dc0fff0fde0d\",\"name\":\"a.png\",\"path\":\"/upload/1/cms/content/1609838258663.png\",\"uid\":1609838258513,\"status\":\"success\"}]', '', '', '0', '', '2022-02-27 11:42:04', 0, NULL, '2022-02-27 11:42:04', '57', '2022-02-27 11:41:36', '57', 0);
  125. INSERT INTO `cms_content` VALUES (1329374891826290690, 1329257594591715329, '<p><span style=\"color: rgb(127, 127, 127);\">TEL:</span>19970180163</p><p><br/></p><p><span style=\"color: rgb(127, 127, 127);\">客服QQ:</span>942770163&nbsp; &nbsp; &nbsp;&nbsp;<span style=\"color: rgb(127, 127, 127);\">商务QQ:</span>3336073455</p><p><br/></p><p><span style=\"color: rgb(127, 127, 127);\">Email:</span>service@mingsoft.net</p><p><br/></p><p><span style=\"color: rgb(127, 127, 127);\">Addr:</span>江西省南昌市南昌高新技术产业开发区紫阳大道2999号紫阳明珠一期办公室楼503室</p><p><br/></p><p><img width=\"530\" height=\"340\" src=\"http://api.map.baidu.com/staticimage?center=116.001482,28.681744&zoom=18&width=530&height=340&markers=116.001877,28.681396\"/></p><p><br/></p>', '联系我们', '', '', '', '[]', '', '', '0', '', '2022-02-27 11:42:04', 0, NULL, '2022-02-27 11:42:04', '57', '2022-02-27 11:41:36', '57', 0);
  126. INSERT INTO `cms_content` VALUES (1329375005479346177, 1329357285870346241, '', '降低软件研发成本', '', '', '', '[{\"url\":\"/upload/1/cms/content/1609838691084.png\",\"name\":\"a.png\",\"path\":\"/upload/1/cms/content/1609838691084.png\",\"uid\":1609838690980,\"status\":\"success\"}]', 'https://www.mingsoft.net', '', '0', 'f', '2022-02-27 11:42:04', 0, NULL, '2022-02-27 11:42:04', '57', '2022-02-27 11:41:36', '57', 0);
  127. INSERT INTO `cms_content` VALUES (1345970571501940737, 1329257757913718785, '<p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"font-size: 20px;\"><span style=\"color: rgb(51, 51, 51); font-family: Roboto, &quot;helvetica neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.3px; orphans: 3; widows: 3;\"><span style=\"font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px;\">包含会员注册、登录、取回密码、个人中心等基本功能</span></span></span></p><hr style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"/><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"font-size: 18px;\"></span></p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"font-size: 18px;\"></span></p><blockquote style=\"font-size: medium; white-space: normal; box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; break-inside: avoid; margin: 0px 0px 0.85em; padding: 0px 15px; color: rgb(133, 133, 133); border-left: 4px solid rgb(229, 229, 229); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px; background-color: rgb(255, 255, 255);\"><h2 id=\"103-snapshot\"><span style=\"font-size: 18px;\">安装方法</span></h2></blockquote><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"font-size: 18px;\"></span>Steup 1:pom.xml增加依赖,并重启系统</p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\">当前版本</p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><a target=\"_blank\" href=\"https://search.maven.org/search?q=ms-mpeople\"><img src=\"https://img.shields.io/maven-central/v/net.mingsoft/ms-mpeople.svg?label=Maven%20Central\" width=\"134\" height=\"20\" border=\"0\" vspace=\"0\" title=\"\" alt=\"\" style=\"width: 134px; height: 20px;\"/></a></p><pre class=\"brush:xml;toolbar:false\" style=\"background-color: rgb(255, 255, 255);\">&lt;!--会员插件--&gt;\n&lt;dependency&gt;\n&nbsp;&nbsp;&lt;groupId&gt;net.mingsoft&lt;/groupId&gt;\n&nbsp;&nbsp;&lt;artifactId&gt;ms-mpeople&lt;/artifactId&gt;\n&nbsp;&nbsp;&lt;version&gt;当前版本&lt;/version&gt;\n&lt;/dependency&gt;</pre><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><span data-key=\"154\" style=\"box-sizing: border-box;\"></span></p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\">Steup 2:重新进入mstore、进入插件详情页点击 在线安装&nbsp; 完成后,刷新后台主界面,会显示相应插件功能菜单,到此插件安装完成;</p><blockquote style=\"font-size: medium; white-space: normal; box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; break-inside: avoid; margin: 0px 0px 0.85em; padding: 0px 15px; color: rgb(133, 133, 133); border-left: 4px solid rgb(229, 229, 229); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px; background-color: rgb(255, 255, 255);\"><h2 id=\"103-snapshot\"><span style=\"font-size: 18px;\">在线文档</span></h2></blockquote><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\">后台使用:<a href=\"http://doc.mingsoft.net/plugs-people/chapter1.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-people/chapter1.html</a></p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\">开放接口:<a href=\"http://doc.mingsoft.net/plugs-people/jie-kou.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-people/jie-kou.html</a></p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\">常见问题:<a href=\"http://doc.mingsoft.net/plugs-people/chang-jian-wen-ti.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-people/chang-jian-wen-ti.html</a></p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\">更新说明:<a href=\"http://doc.mingsoft.net/plugs-people/ban-ben-geng-xin-shuo-ming.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-people/ban-ben-geng-xin-shuo-ming.html</a></p><p><br/></p>', '会员模块', NULL, '免费', '会员注册、会员登录、基本资料、取回密码、修改密码等基本功能', '[{\"url\":\"blob:http://192.168.2.105:8080/082adb39-0491-49ca-a653-b922dea92e54\",\"name\":\"1531101317481.png\",\"path\":\"/upload/1/cms/content/1609739360761.png\",\"uid\":1609739362946,\"status\":\"success\"}]', '', '', '0', '', '2022-02-27 11:42:04', 0, NULL, '2022-02-27 11:42:04', '0', '2022-02-27 11:41:36', '57', 0);
  128. INSERT INTO `cms_content` VALUES (1345971247867015169, 1329257757913718785, '<p style=\"width: 848px; white-space: normal;\"><span style=\"font-size: 20px;\"><span style=\"color: rgb(51, 51, 51); font-family: Roboto, &quot;helvetica neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.3px; orphans: 3; widows: 3; background-color: rgb(255, 255, 255);\"><span style=\"font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px;\">支持对信息的评论,后台查看用户评论的信息,支持对用户评论的筛选。</span></span></span></p><hr style=\"white-space: normal;\"/><p style=\"width: 848px; white-space: normal;\"><span style=\"font-size: 18px;\"></span></p><p style=\"width: 848px; white-space: normal;\"><span style=\"font-size: 18px;\"></span></p><blockquote style=\"white-space: normal; box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; break-inside: avoid; margin: 0px 0px 0.85em; padding: 0px 15px; color: rgb(133, 133, 133); border-left: 4px solid rgb(229, 229, 229); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px; background-color: rgb(255, 255, 255);\"><h2 id=\"103-snapshot\"><span style=\"font-size: 18px;\">安装方法</span></h2></blockquote><p style=\"width: 848px; white-space: normal;\"><span style=\"font-size: 18px;\"></span>Steup 1:pom.xml增加依赖,并重启系统</p><p style=\"width: 848px; white-space: normal;\"><br/></p><p style=\"width: 848px; white-space: normal;\"><a target=\"_blank\" href=\"https://search.maven.org/search?q=ms-mcomment\"><img src=\"https://img.shields.io/maven-central/v/net.mingsoft/ms-mcomment.svg?label=Maven%20Central\" width=\"134\" height=\"20\" border=\"0\" vspace=\"0\" title=\"\" alt=\"\" style=\"width: 134px; height: 20px;\"/></a></p><pre class=\"brush:xml;toolbar:false\">&lt;!--评论插件依赖--&gt;\n&lt;dependency&gt;\n&nbsp;&nbsp;&lt;groupId&gt;net.mingsoft&lt;/groupId&gt;\n&nbsp;&nbsp;&lt;artifactId&gt;ms-mcomment&lt;/artifactId&gt;\n&lt;/dependency&gt;</pre><p style=\"width: 848px; white-space: normal;\"><span data-key=\"154\" style=\"box-sizing: border-box;\"></span></p><p style=\"width: 848px; white-space: normal;\">Steup 2:重新进入mstore、进入插件详情页点击 在线安装&nbsp; 完成后,刷新后台主界面,会显示相应插件功能菜单,到此插件安装完成;</p><blockquote style=\"white-space: normal; box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; break-inside: avoid; margin: 0px 0px 0.85em; padding: 0px 15px; color: rgb(133, 133, 133); border-left: 4px solid rgb(229, 229, 229); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px; background-color: rgb(255, 255, 255);\"><h2 id=\"103-snapshot\"><span style=\"font-size: 18px;\">在线文档</span></h2></blockquote><p style=\"width: 848px; white-space: normal;\">后台使用:<a href=\"http://doc.mingsoft.net/plugs-comment/chapter1/ping-lun-guan-li.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-comment/chapter1/ping-lun-guan-li.html</a></p><p style=\"width: 848px; white-space: normal;\">开放接口:<a href=\"http://doc.mingsoft.net/plugs-comment/jie-kou/peopleceng-jie-kou.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-comment/jie-kou/peopleceng-jie-kou.html</a></p><p style=\"width: 848px; white-space: normal;\">常见问题:<a href=\"http://doc.mingsoft.net/plugs-comment/chang-jian-wen-ti.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-comment/chang-jian-wen-ti.html</a></p><p style=\"width: 848px; white-space: normal;\">更新说明:<a href=\"http://doc.mingsoft.net/plugs-comment/ban-ben-geng-xin-shuo-ming.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-comment/ban-ben-geng-xin-shuo-ming.html</a></p><p style=\"width: 848px; white-space: normal;\"><br style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; background-color: rgb(255, 255, 255);\"/></p><p><br/></p>', '评论插件', NULL, '免费', '好信息必须评~', '[{\"url\":\"blob:http://192.168.2.105:8080/9c3a2ce3-fec3-4f4a-b7ab-e5ba16485ffc\",\"name\":\"1531101378470.png\",\"path\":\"/upload/1/cms/content/1609739792665.png\",\"uid\":1609739794931,\"status\":\"success\"}]', '', '', '0', '', '2022-02-27 11:42:04', 0, NULL, '2022-02-27 11:42:04', '57', '2022-02-27 11:41:36', '57', 0);
  129. INSERT INTO `cms_content` VALUES (1345971375898144770, 1329257757913718785, '<p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"color: rgb(51, 51, 51); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 20px; letter-spacing: 0.2px; orphans: 3; widows: 3;\">一套系统管理多个网站的插件,每个网站的数据、权限可以分开进行管理</span><br/></p><hr style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"/><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"font-size: 18px;\"></span></p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"font-size: 18px;\"></span></p><blockquote style=\"font-size: medium; white-space: normal; box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; break-inside: avoid; margin: 0px 0px 0.85em; padding: 0px 15px; color: rgb(133, 133, 133); border-left: 4px solid rgb(229, 229, 229); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px; background-color: rgb(255, 255, 255);\"><h2 id=\"103-snapshot\"><span style=\"font-size: 18px;\">安装方法</span></h2></blockquote><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"font-size: 18px;\"></span>Steup 1:打开站群插件详情,点击在线安装,跳转到支付界面进行支付;</p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\">Steup 2:支付成功后,再次进入站群插件详情页面,点击在线安装,根据系统提示下载代码,将下载的代码src文件夹直接复到项目中对应到src文件,选择合并覆盖。由于是源代码所以覆盖完代码后需要手动重新启项目;</p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><span data-key=\"154\" style=\"box-sizing: border-box;\"></span></p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\">Steup 3:项目启动成功后,再次进入站群插件详情页面,点击在线安装,根据提示进行安装;</p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\">Steup 4:在线安装完成后,退出当前登录账号(通常是msopen账号),直接使用站群管理员账号(<span style=\"caret-color: rgb(0, 0, 0); font-family: Arial, Helvetica, sans-serif; text-size-adjust: auto;\">账号:adminms 密码:msopen</span>)重新登录后台;</p><blockquote style=\"font-size: medium; white-space: normal; box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; break-inside: avoid; margin: 0px 0px 0.85em; padding: 0px 15px; color: rgb(133, 133, 133); border-left: 4px solid rgb(229, 229, 229); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px; background-color: rgb(255, 255, 255);\"><h2 id=\"103-snapshot\"><span style=\"font-size: 18px;\">源码</span></h2></blockquote><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"font-size: 18px;\"></span>请通过赞助方式下载源代码<br/></p><blockquote style=\"font-size: medium; white-space: normal; box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; break-inside: avoid; margin: 0px 0px 0.85em; padding: 0px 15px; color: rgb(133, 133, 133); border-left: 4px solid rgb(229, 229, 229); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px; background-color: rgb(255, 255, 255);\"><h2 id=\"103-snapshot\"><span style=\"font-size: 18px;\">在线文档</span></h2></blockquote><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\">后台使用:<a href=\"http://doc.mingsoft.net/plugs-website/chapter1/ying-yong-guan-li.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-website/chapter1/ying-yong-guan-li.html</a></p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\">常见问题:<a href=\"http://doc.mingsoft.net/plugs-website/chang-jian-wen-ti.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-website/chang-jian-wen-ti.html</a></p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\">更新说明:<a href=\"http://doc.mingsoft.net/plugs-website/ban-ben-geng-xin-shuo-ming.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-website/ban-ben-geng-xin-shuo-ming.htm</a></p><p><br/></p>', '站群插件', NULL, '500', '省资源、高效益。MS给你提供完整的站群解决方案+优质人工服务 更新说明: 1、增加站点停止服务功能 2、增加站点访问日志记录功能', '[{\"url\":\"blob:http://192.168.2.105:8080/17817984-f0e7-4d4d-964b-d85e17128d21\",\"name\":\"1531101138214.png\",\"path\":\"/upload/1/cms/content/1609739781890.png\",\"uid\":1609739784218,\"status\":\"success\"}]', '', '', '0', '', '2022-02-27 11:42:04', 0, NULL, '2022-02-27 11:42:04', '57', '2022-02-27 11:41:36', '57', 0);
  130. INSERT INTO `cms_content` VALUES (1345971507544764417, 1329257757913718785, '<p style=\"width: 848px;\"><span style=\"background-color: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: Roboto, &quot;helvetica neue&quot;, Helvetica, Arial, sans-serif; font-size: 20px; letter-spacing: 0.3px; orphans: 3; widows: 3;\"><span style=\"font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px;\">微信插件是最近后台系统更新上线的一个系统功能,微信插件可管理多个微信号,进行自定义菜单、编辑图文消息、群发功能和关注回复、被动回复、关键字回复功能。</span></span><br/></p><hr/><p style=\"width: 848px; white-space: normal;\"><span style=\"font-size: 18px;\"></span></p><p style=\"width: 848px; white-space: normal;\"><span style=\"font-size: 18px;\"></span></p><blockquote style=\"white-space: normal; box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; break-inside: avoid; margin: 0px 0px 0.85em; padding: 0px 15px; color: rgb(133, 133, 133); border-left: 4px solid rgb(229, 229, 229); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px; background-color: rgb(255, 255, 255);\"><h2><span style=\"font-size: 18px;\">安装方法</span></h2></blockquote><p style=\"width: 848px; white-space: normal;\"><span style=\"font-size: 18px;\"></span>Steup 1:pom.xml增加依赖,并重启系统</p><p style=\"width: 848px; white-space: normal;\">当前版本</p><p style=\"width: 848px; white-space: normal;\"><a target=\"_blank\" href=\"https://search.maven.org/search?q=ms-mweixin\"><img src=\"https://img.shields.io/maven-central/v/net.mingsoft/ms-mweixin.svg?label=Maven%20Central\" width=\"134\" height=\"20\" title=\"\" alt=\"\"/></a></p><pre class=\"brush:xml;toolbar:false\">&lt;!--&nbsp;微信插件--&gt;\n&lt;dependency&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;groupId&gt;net.mingsoft&lt;/groupId&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;artifactId&gt;ms-mweixin&lt;/artifactId&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;version&gt;当前版本&lt;/version&gt;\n&lt;/dependency&gt;\n&lt;!--&nbsp;微信公众号第三方插件&nbsp;--&gt;\n&lt;dependency&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;groupId&gt;com.github.binarywang&lt;/groupId&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;artifactId&gt;weixin-java-mp&lt;/artifactId&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;version&gt;3.6.0&lt;/version&gt;\n&lt;/dependency&gt;\n&lt;!--&nbsp;微信公众号公共包第三方插件&nbsp;--&gt;\n&lt;dependency&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;groupId&gt;com.github.binarywang&lt;/groupId&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;artifactId&gt;weixin-java-common&lt;/artifactId&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;version&gt;3.6.0&lt;/version&gt;\n&lt;/dependency&gt;\n&lt;!--&nbsp;微信公众号支付第三方插件&nbsp;--&gt;\n&lt;dependency&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;groupId&gt;com.github.binarywang&lt;/groupId&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;artifactId&gt;weixin-java-pay&lt;/artifactId&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;version&gt;3.6.0&lt;/version&gt;\n&lt;/dependency&gt;</pre><p style=\"width: 848px; white-space: normal;\"><span style=\"box-sizing: border-box;\"></span></p><p style=\"width: 848px; white-space: normal;\">Steup 2:重新进入mstore、进入插件详情页点击 在线安装&nbsp; 完成后,刷新后台主界面,会显示相应插件功能菜单,到此插件安装完成;</p><blockquote style=\"white-space: normal; box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; break-inside: avoid; margin: 0px 0px 0.85em; padding: 0px 15px; color: rgb(133, 133, 133); border-left: 4px solid rgb(229, 229, 229); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px; background-color: rgb(255, 255, 255);\"><h2><span style=\"font-size: 18px;\">在线文档</span></h2></blockquote><p style=\"width: 848px; white-space: normal;\">后台使用:<a href=\"http://doc.mingsoft.net/plugs-weixin/hou-tai-shi-yong/gong-zhong-hao-guan-li.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-weixin/hou-tai-shi-yong/gong-zhong-hao-guan-li.html</a></p><p style=\"width: 848px; white-space: normal;\">开放接口:<a href=\"http://doc.mingsoft.net/plugs-weixin/jie-kou/wei-xin-pei-zhi-ru-kou.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-weixin/jie-kou/wei-xin-pei-zhi-ru-kou.html</a></p><p style=\"width: 848px; white-space: normal;\">常见问题:<a href=\"http://doc.mingsoft.net/plugs-weixin/chang-jian-wen-ti/zen-yao-pei-zhi-wei-xin.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-weixin/chang-jian-wen-ti/zen-yao-pei-zhi-wei-xin.html</a></p><p style=\"width: 848px; white-space: normal;\">更新说明:<a href=\"http://doc.mingsoft.net/plugs-weixin/ban-ben-geng-xin-shuo-ming.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-weixin/ban-ben-geng-xin-shuo-ming.html</a></p><p style=\"width: 848px; white-space: normal;\"><br/></p><p><br/></p>', '微信插件', '', '免费', '可管理多个微信号,微信的基本功能、关注回复、自定义菜单、图文消息、群发功能、自动回复等', '[{\"url\":\"/upload/1/cms/content/1609739587867.png\",\"name\":\"1531101341729.png\",\"path\":\"/upload/1/cms/content/1609739587867.png\",\"uid\":1609739590109,\"status\":\"success\"}]', '', '', '0', '', '2022-02-27 11:42:04', 0, NULL, '2022-02-27 11:42:04', '57', '2022-02-27 11:41:36', '57', 0);
  131. INSERT INTO `cms_content` VALUES (1345972513561161729, 1329257757913718785, '<p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"color: rgb(51, 51, 51); font-family: Roboto, &quot;helvetica neue&quot;, Helvetica, Arial, sans-serif; font-size: 20px; letter-spacing: 0.3px; orphans: 3; widows: 3;\"><span style=\"font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px;\">关注插件可以满足常见的业务场景如收藏、赞、顶、踩、关注等。</span></span></p><hr style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"/><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"font-size: 18px;\"></span></p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"font-size: 18px;\"></span></p><blockquote style=\"font-size: medium; white-space: normal; box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; break-inside: avoid; margin: 0px 0px 0.85em; padding: 0px 15px; color: rgb(133, 133, 133); border-left: 4px solid rgb(229, 229, 229); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px; background-color: rgb(255, 255, 255);\"><h2 id=\"103-snapshot\"><span style=\"font-size: 18px;\">安装方法</span></h2></blockquote><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"font-size: 18px;\"></span>Steup 1:pom.xml增加依赖,并重启系统</p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\">当前版本</p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><a target=\"_blank\" href=\"https://search.maven.org/search?q=ms-mattention\"><img src=\"https://img.shields.io/maven-central/v/net.mingsoft/ms-mattention.svg?label=Maven%20Central\" width=\"134\" height=\"20\" border=\"0\" vspace=\"0\" title=\"\" alt=\"\" style=\"width: 134px; height: 20px;\"/></a></p><pre class=\"brush:xml;toolbar:false\" style=\"background-color: rgb(255, 255, 255);\">&lt;!--关注插件依赖--&gt;\n&lt;dependency&gt;\n&nbsp;&nbsp;&lt;groupId&gt;net.mingsoft&lt;/groupId&gt;\n&nbsp;&nbsp;&lt;artifactId&gt;ms-mattention&lt;/artifactId&gt;\n&nbsp;&nbsp;&lt;version&gt;当前版本&lt;/version&gt;\n&lt;/dependency&gt;</pre><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><span data-key=\"154\" style=\"box-sizing: border-box;\"></span></p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\">Steup 2:重新进入mstore、进入插件详情页点击 在线安装&nbsp; 完成后,刷新后台主界面,会显示相应插件功能菜单,到此插件安装完成;</p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><span data-key=\"154\" style=\"box-sizing: border-box;\"></span></p><blockquote style=\"font-size: medium; white-space: normal; box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; break-inside: avoid; margin: 0px 0px 0.85em; padding: 0px 15px; color: rgb(133, 133, 133); border-left: 4px solid rgb(229, 229, 229); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px; background-color: rgb(255, 255, 255);\"><h2 id=\"103-snapshot\"><span style=\"font-size: 18px;\">源码</span></h2></blockquote><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"font-size: 18px;\">https://github.com/ming-soft/ms-mattention</span></p><blockquote style=\"font-size: medium; white-space: normal; box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; break-inside: avoid; margin: 0px 0px 0.85em; padding: 0px 15px; color: rgb(133, 133, 133); border-left: 4px solid rgb(229, 229, 229); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px; background-color: rgb(255, 255, 255);\"><h2 id=\"103-snapshot\"><span style=\"font-size: 18px;\">在线文档</span></h2></blockquote><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\">开放接口:<a href=\"http://doc.ms.mingsoft.net/plugs-attention/chapter1.html\" target=\"_blank\">http://doc.ms.mingsoft.net/plugs-attention/chapter1.html</a></p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\">常见问题:<a href=\"http://doc.mingsoft.net/plugs-attention/chang-jian-wen-ti.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-attention/chang-jian-wen-ti.html</a></p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\">更新说明:<a href=\"http://doc.mingsoft.net/plugs-attention/ban-ben-geng-xin-shuo-ming.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-attention/ban-ben-geng-xin-shuo-ming.html</a></p><p><br/></p>', '关注插件', NULL, '免费', '收藏、赞、顶、踩、关注等实现的通用功能,可以根据实际业务需求定义各种类型', '[{\"url\":\"blob:http://192.168.2.105:8080/b3eda44e-65a5-4e0a-be2a-b6d82d41022f\",\"name\":\"1531101476723.png\",\"path\":\"/upload/1/cms/content/1609739824520.png\",\"uid\":1609739826900,\"status\":\"success\"}]', '', '', '0', '', '2022-02-27 11:42:04', 0, NULL, '2022-02-27 11:42:04', '0', '2022-02-27 11:41:36', '57', 0);
  132. INSERT INTO `cms_content` VALUES (1345972716284456962, 1329257757913718785, '<p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"font-size: 20px;\"><span style=\"color: rgb(51, 51, 51); font-family: Roboto, &quot;helvetica neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.3px; orphans: 3; widows: 3;\"><span style=\"font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px;\">包含自定义字典、自定义搜索、自定义模型、自定义表单、自定义页面等功能</span></span></span></p><hr style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"/><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"font-size: 18px;\"></span></p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"font-size: 18px;\"></span></p><blockquote style=\"font-size: medium; white-space: normal; box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; break-inside: avoid; margin: 0px 0px 0.85em; padding: 0px 15px; color: rgb(133, 133, 133); border-left: 4px solid rgb(229, 229, 229); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px; background-color: rgb(255, 255, 255);\"><h2 id=\"103-snapshot\"><span style=\"font-size: 18px;\">安装方法</span></h2></blockquote><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"font-size: 18px;\"></span>Steup 1:pom.xml增加依赖,并重启系统</p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\">当前版本</p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><a target=\"_blank\" href=\"https://search.maven.org/search?q=ms-mdiy\"><img src=\"https://img.shields.io/maven-central/v/net.mingsoft/ms-mdiy.svg?label=Maven%20Central\" width=\"134\" height=\"20\" border=\"0\" vspace=\"0\" title=\"\" alt=\"\" style=\"width: 134px; height: 20px;\"/></a></p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><br/></p><pre class=\"brush:xml;toolbar:false\" style=\"background-color: rgb(255, 255, 255);\">&lt;!--自定义插件--&gt;\n&lt;dependency&gt;\n&nbsp;&nbsp;&lt;groupId&gt;net.mingsoft&lt;/groupId&gt;\n&nbsp;&nbsp;&lt;artifactId&gt;ms-mdiy&lt;/artifactId&gt;\n&nbsp;&nbsp;&lt;version&gt;当前版本&lt;/version&gt;\n&lt;/dependency&gt;</pre><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><span data-key=\"154\" style=\"box-sizing: border-box;\"></span></p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\">Steup 2:重新进入mstore、进入插件详情页点击 在线安装&nbsp; 完成后,刷新后台主界面,会显示相应插件功能菜单,到此插件安装完成;</p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><span data-key=\"154\" style=\"box-sizing: border-box;\"></span></p><blockquote style=\"font-size: medium; white-space: normal; box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; break-inside: avoid; margin: 0px 0px 0.85em; padding: 0px 15px; color: rgb(133, 133, 133); border-left: 4px solid rgb(229, 229, 229); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px; background-color: rgb(255, 255, 255);\"><h2 id=\"103-snapshot\"><span style=\"font-size: 18px;\">源码</span></h2></blockquote><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"><span style=\"font-size: 18px;\">https://github.com/ming-soft/ms-mdiy</span></p><blockquote style=\"font-size: medium; white-space: normal; box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; break-inside: avoid; margin: 0px 0px 0.85em; padding: 0px 15px; color: rgb(133, 133, 133); border-left: 4px solid rgb(229, 229, 229); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px; background-color: rgb(255, 255, 255);\"><h2 id=\"103-snapshot\"><span style=\"font-size: 18px;\">在线文档</span></h2></blockquote><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\">后台使用:<a href=\"http://doc.mingsoft.net/plugs-diy/chapter1/zi-ding-yi-zi-dian.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-diy/chapter1/zi-ding-yi-zi-dian.html</a></p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\">开放接口:<a href=\"http://doc.mingsoft.net/plugs-diy/jie-kou/zi-dian-lie-biao.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-diy/jie-kou/zi-dian-lie-biao.html</a></p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\">常见问题:<a href=\"http://doc.mingsoft.net/plugs-diy/chang-jian-wen-ti.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-diy/chang-jian-wen-ti.html</a></p><p style=\"width: 848px; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\">更新说明:<a href=\"http://doc.mingsoft.net/plugs-diy/ban-ben-geng-xin-shuo-ming.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-diy/ban-ben-geng-xin-shuo-ming.html</a></p><p><br/></p>', '自定义插件', NULL, '免费', '最基本到应用管理系统,包含菜单、权限、角色、栏目、内容、静态化、自定义等常用功能', '[{\"url\":\"blob:http://192.168.2.105:8080/4a5bcfce-4763-4f8b-9725-8e41b8b7642a\",\"name\":\"1531101439974.png\",\"path\":\"/upload/1/cms/content/1609739871146.png\",\"uid\":1609739873416,\"status\":\"success\"}]', '', '', '0', '', '2022-02-27 11:42:04', 0, NULL, '2022-02-27 11:42:04', '0', '2022-02-27 11:41:36', '57', 0);
  133. INSERT INTO `cms_content` VALUES (1345972904663232513, 1329257757913718785, '<p style=\"width: 848px;\"><span style=\"background-color: rgb(255, 255, 255); color: rgb(51, 51, 51); font-family: Roboto, &quot;helvetica neue&quot;, Helvetica, Arial, sans-serif; font-size: 20px; letter-spacing: 0.3px; orphans: 3; widows: 3;\"><span style=\"font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px;\">支持通过邮件、短信方式进行消息推送,也支持第三方平台sendcloud</span></span></p><hr style=\"white-space: normal;\"/><p style=\"width: 848px; white-space: normal;\"><span style=\"font-size: 18px;\"></span></p><p style=\"width: 848px; white-space: normal;\"><span style=\"font-size: 18px;\"></span></p><blockquote style=\"white-space: normal; box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; break-inside: avoid; margin: 0px 0px 0.85em; padding: 0px 15px; color: rgb(133, 133, 133); border-left: 4px solid rgb(229, 229, 229); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px; background-color: rgb(255, 255, 255);\"><h2 id=\"103-snapshot\"><span style=\"font-size: 18px;\">安装方法</span></h2></blockquote><p style=\"width: 848px; white-space: normal;\"><span style=\"font-size: 18px;\"></span>Steup 1:pom.xml增加依赖,并重启系统</p><p style=\"width: 848px; white-space: normal;\">当前版本</p><p style=\"width: 848px; white-space: normal;\"><a target=\"_blank\" href=\"https://search.maven.org/search?q=ms-msend\"><img src=\"https://img.shields.io/maven-central/v/net.mingsoft/ms-msend.svg?label=Maven%20Central\" width=\"134\" height=\"20\" border=\"0\" vspace=\"0\" title=\"\" alt=\"\" style=\"width: 134px; height: 20px;\"/></a></p><pre class=\"brush:xml;toolbar:false\">&lt;!--&nbsp;ms-msend发送模块源码&nbsp;--&gt;\n&lt;dependency&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;groupId&gt;net.mingsoft&lt;/groupId&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;artifactId&gt;ms-msend&lt;/artifactId&gt;\n&nbsp;&nbsp;&nbsp;&nbsp;&lt;version&gt;当前版本&lt;/version&gt;\n&lt;/dependency&gt;</pre><p style=\"width: 848px; white-space: normal;\"><span data-key=\"154\" style=\"box-sizing: border-box;\"></span></p><p style=\"width: 848px; white-space: normal;\">Steup 2:重新进入mstore、进入插件详情页点击 在线安装&nbsp; 完成后,刷新后台主界面,会显示相应插件功能菜单,到此插件安装完成;</p><blockquote style=\"white-space: normal; box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; break-inside: avoid; margin: 0px 0px 0.85em; padding: 0px 15px; color: rgb(133, 133, 133); border-left: 4px solid rgb(229, 229, 229); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px; background-color: rgb(255, 255, 255);\"><h2 id=\"103-snapshot\"><span style=\"font-size: 18px;\">在线文档</span></h2></blockquote><p style=\"width: 848px; white-space: normal;\">后台使用:<a href=\"http://doc.mingsoft.net/plugs-send/hou-tai-shi-yong/duan-xin-pei-zhi.html\" target=\"_blank\">http://doc.ms.mingsoft.net/plugs-send/hou-tai-shi-yong/duan-xin-pei-zhi.html</a></p><p style=\"width: 848px; white-space: normal;\">开放接口:<a href=\"http://doc.mingsoft.net/plugs-send/qian-duan-shi-yong/sendutil.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-send/qian-duan-shi-yong/sendutil.html</a></p><p style=\"width: 848px; white-space: normal;\">常见问题:<a href=\"http://doc.mingsoft.net/plugs-send/chang-jian-wen-ti.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-send/chang-jian-wen-ti.html</a></p><p style=\"width: 848px; white-space: normal;\">更新说明:<a href=\"http://doc.mingsoft.net/plugs-send/ban-ben.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-send/ban-ben.html</a></p><p style=\"width: 848px; white-space: normal;\"><br style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; background-color: rgb(255, 255, 255);\"/></p><p><br/></p>', '发送插件', NULL, '免费', '邮件发送、短信发送模块,用户只需要配置相关短信模板即可使用', '[{\"url\":\"blob:http://localhost:8080/87e42125-9221-425f-b911-549a060128c0\",\"name\":\"1.png\",\"path\":\"/upload/1/cms/content/1609742916205.png\",\"uid\":1609742916109,\"status\":\"success\"}]', '', '', '0', '', '2022-02-27 11:42:04', 0, NULL, '2022-02-27 11:42:04', '57', '2022-02-27 11:41:36', '57', 0);
  134. INSERT INTO `cms_content` VALUES (1345973065812586497, 1329257757913718785, '<p style=\"width: 848px; white-space: normal;\"><span style=\"font-size: 20px;\"><span style=\"color: rgb(51, 51, 51); font-family: Roboto, &quot;helvetica neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.3px; orphans: 3; widows: 3; background-color: rgb(255, 255, 255);\">通用的支付插件,目前支持微信、支付宝两种支付场景、支持交易日志记录查看</span></span></p><hr/><p style=\"width: 848px;\"><span style=\"font-size: 18px;\"></span></p><p style=\"width: 848px;\"><span style=\"font-size: 18px;\"></span></p><blockquote style=\"white-space: normal; box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; break-inside: avoid; margin: 0px 0px 0.85em; padding: 0px 15px; color: rgb(133, 133, 133); border-left: 4px solid rgb(229, 229, 229); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px; background-color: rgb(255, 255, 255);\"><h2 id=\"103-snapshot\"><span style=\"font-size: 18px;\">安装方法</span></h2></blockquote><p style=\"width: 848px;\"><span style=\"font-size: 18px;\"></span>Steup 1:pom.xml增加依赖,并重启系统</p><p style=\"width: 848px;\"><br/></p><p style=\"width: 848px;\">当前版本</p><p style=\"width: 848px; white-space: normal;\"><a target=\"_blank\" href=\"https://search.maven.org/search?q=ms-mpay\"><img src=\"https://img.shields.io/maven-central/v/net.mingsoft/ms-mpay.svg?label=Maven%20Central\" width=\"134\" height=\"20\" border=\"0\" vspace=\"0\" title=\"\" alt=\"\" style=\"width: 134px; height: 20px;\"/></a></p><pre class=\"brush:xml;toolbar:false\">&lt;!--支付插件--&gt;\n&lt;dependency&gt;\n&lt;groupId&gt;net.mingsoft&lt;/groupId&gt;\n&lt;artifactId&gt;ms-mpay&lt;/artifactId&gt;\n&lt;version&gt;当前版本&lt;/version&gt;\n&lt;/dependency&gt;</pre><p style=\"width: 848px;\"><span data-key=\"154\" style=\"box-sizing: border-box;\"></span></p><p style=\"width: 848px; white-space: normal;\">Steup 2:重新进入mstore、进入插件详情页点击 在线安装&nbsp; 完成后,刷新后台主界面,会显示相应插件功能菜单,到此插件安装完成;</p><blockquote style=\"white-space: normal; box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; break-inside: avoid; margin: 0px 0px 0.85em; padding: 0px 15px; color: rgb(133, 133, 133); border-left: 4px solid rgb(229, 229, 229); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px; background-color: rgb(255, 255, 255);\"><h2 id=\"103-snapshot\"><span style=\"font-size: 18px;\">在线文档</span></h2></blockquote><p style=\"width: 848px; white-space: normal;\">后台使用:<a href=\"http://doc.mingsoft.net/plugs-pay/3cha-jian-de-hou-tai-shi-yong/wei-xin-zhi-fu-she-zhi.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-pay/3cha-jian-de-hou-tai-shi-yong/wei-xin-zhi-fu-she-zhi.html</a></p><p style=\"width: 848px; white-space: normal;\">开放接口:<a href=\"http://doc.mingsoft.net/plugs-pay/4qian-duan-jie-kou-shi-yong/wang-guan-jie-kou.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-pay/4qian-duan-jie-kou-shi-yong/wang-guan-jie-kou.html</a></p><p style=\"width: 848px; white-space: normal;\">常见问题:<a href=\"http://doc.mingsoft.net/plugs-pay/chang-jian-wen-ti.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-pay/chang-jian-wen-ti.html</a></p><p style=\"width: 848px; white-space: normal;\">更新说明:<a href=\"http://doc.mingsoft.net/plugs-pay/ban-ben-geng-xin-shuo-ming.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-pay/ban-ben-geng-xin-shuo-ming.html</a></p><p style=\"width: 848px; white-space: normal;\"><br style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; background-color: rgb(255, 255, 255);\"/></p><p><br/></p>', '支付交易', NULL, '免费', '用户可以自由配置支付宝、微信支付的交易账号', '[{\"url\":\"blob:http://192.168.2.105:8080/eb51577a-c191-45b4-8519-e6c14fcf32f1\",\"name\":\"1531101172093.png\",\"path\":\"/upload/1/cms/content/1609739953632.png\",\"uid\":1609739955791,\"status\":\"success\"}]', '', '', '0', '', '2022-02-27 11:42:04', 0, NULL, '2022-02-27 11:42:04', '0', '2022-02-27 11:41:36', '57', 0);
  135. INSERT INTO `cms_content` VALUES (1345973172616343553, 1329257757913718785, '<p style=\"width: 820px;\"><span style=\"font-size: 20px;\">最干净、最简单的内容管理插件,包含菜单、权限、角色、栏目、内容、静态化、等常用功能</span></p><hr/><blockquote style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; break-inside: avoid; margin: 0px 0px 0.85em; padding: 0px 15px; color: rgb(133, 133, 133); border-left: 4px solid rgb(229, 229, 229); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px;\"><h2 id=\"103-snapshot\"><span style=\"font-size: 18px;\"></span></h2><h2 id=\"103-snapshot\"><span style=\"font-size: 18px;\">源码</span></h2></blockquote><p style=\"width: 820px;\"><a href=\"https://gitee.com/mingSoft/MCMS\" target=\"_blank\">https://gitee.com/mingSoft/MCMS</a></p><p style=\"width: 820px;\"><a href=\"https://github.com/ming-soft/MCMS\" target=\"_blank\">https://github.com/ming-soft/MCMS</a></p><blockquote style=\"box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; break-inside: avoid; margin: 0px 0px 0.85em; padding: 0px 15px; color: rgb(133, 133, 133); border-left: 4px solid rgb(229, 229, 229); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px;\"><h2 id=\"103-snapshot\"><span style=\"font-size: 18px;\">在线文档</span></h2></blockquote><p style=\"width: 820px;\">后台使用:<a href=\"http://doc.mingsoft.net/plugs-cms/quan-xian-guan-li/guan-li-yuan-guan-li.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-cms/quan-xian-guan-li/guan-li-yuan-guan-li.html</a><br/></p><p style=\"width: 820px;\">标签手册:<a href=\"http://doc.mingsoft.net/plugs-cms/biao-qian/jie-shao.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-cms/biao-qian/jie-shao.html</a></p><p style=\"width: 820px;\">模版制作:<a href=\"http://doc.mingsoft.net/plugs-cms/mo-ban-zhi-zuo/pcduan-mo-ban-zhi-zuo.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-cms/mo-ban-zhi-zuo/pcduan-mo-ban-zhi-zuo.html</a></p><p style=\"width: 820px;\">开放接口:<a href=\"http://doc.mingsoft.net/plugs-cms/jie-kou/wen-zhang-lie-biao-xin-xi.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-cms/jie-kou/wen-zhang-lie-biao-xin-xi.html</a></p><p style=\"width: 820px;\">常见问题:<a href=\"http://doc.mingsoft.net/plugs-cms/chang-jian-wen-ti/biao-qian-shi-yong.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-cms/chang-jian-wen-ti/biao-qian-shi-yong.html</a></p><p style=\"width: 820px;\">更新说明:<a href=\"http://doc.mingsoft.net/plugs-cms/ban-ben.html\" target=\"_blank\">http://doc.mingsoft.net/plugs-cms/ban-ben.html</a></p><p style=\"width: 820px;\">BUG提交:<a href=\"https://gitee.com/mingSoft/MCMS/issues\" target=\"_blank\">https://gitee.com/mingSoft/MCMS/issues</a></p><p style=\"width: 820px;\"><br/></p><p><br/></p>', '内容插件', NULL, '免费', '内容升级包补丁,修复功能权限控制', '[{\"url\":\"blob:http://localhost:8080/a7cec28a-a49b-437b-ba46-f8b4e62fa79c\",\"name\":\"a.png\",\"path\":\"/upload/1/cms/content/1609837531913.png\",\"uid\":1609837531865,\"status\":\"success\"}]', '', '', '0', '', '2022-02-27 11:42:04', 0, NULL, '2022-02-27 11:42:04', '57', '2022-02-27 11:41:36', '57', 0);
  136. INSERT INTO `cms_content` VALUES (1345973329424592897, 1329257757913718785, '<p style=\"width: 848px; white-space: normal;\"><span style=\"font-size: 20px;\">目前最完整的城市数据库,精确到乡镇村&nbsp;</span></p><hr style=\"white-space: normal;\"/><blockquote style=\"white-space: normal; box-sizing: border-box; -webkit-tap-highlight-color: transparent; text-size-adjust: none; -webkit-font-smoothing: antialiased; break-inside: avoid; margin: 0px 0px 0.85em; padding: 0px 15px; color: rgb(133, 133, 133); border-left: 4px solid rgb(229, 229, 229); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; letter-spacing: 0.2px; background-color: rgb(255, 255, 255);\"><h2 id=\"103-snapshot\"><span style=\"font-size: 18px;\"></span></h2><h2 id=\"103-snapshot\"><span style=\"font-size: 18px;\">安装方式</span></h2></blockquote><p style=\"width: 848px;\">由于城市数据文件比较大,约90M,所以提供在线SQL文件下载,需要手动导入数据库,推荐使用source指令导入方式。</p><pre class=\"brush:sql;toolbar:false\">mysql&gt;use&nbsp;数据名称;\nmysql&gt;source&nbsp;路径/city.sql;</pre><p style=\"width: 848px;\">城市数据接口读取方式参考代码生成器中的城市组件,特别说明:商城插件、运费插件、会员插件等用以后用到城市数据的插件都必须导入城市数据,否则会因缺少城市数据导致业务流程失败。</p><p style=\"width: 848px;\"><br style=\"font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, &quot;Segoe UI&quot;, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Noto Sans&quot;, &quot;Noto Sans CJK SC&quot;, &quot;Microsoft YaHei&quot;, 微软雅黑, sans-serif; font-size: medium; white-space: normal; background-color: rgb(255, 255, 255);\"/></p><p><br/></p>', '城市数据', NULL, '免费', '通用城市数据,不定期会更新', '[{\"url\":\"/upload/1/cms/content/1609740022739.png\",\"name\":\"1535532192568.png\",\"path\":\"/upload/1/cms/content/1609740022739.png\",\"uid\":1609740024570,\"status\":\"success\"}]', '', '', '0', '', '2022-02-27 11:42:04', 0, NULL, '2022-02-27 11:42:04', '57', '2022-02-27 11:41:36', '57', 0);
  137. INSERT INTO `cms_content` VALUES (1346299650146922497, 1329258744783118337, '<p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">下面我们开始分享一下开源中国中最火的Java开源CMS建站系统(代码可以到gitee.com中下载 搜一下项目名称)</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\"><span style=\"box-sizing: border-box; outline: 0px; font-weight: 700; overflow-wrap: break-word;\"><span style=\"box-sizing: border-box; outline: 0px; margin: 0px; padding: 0px; overflow-wrap: break-word; color: rgb(243, 59, 69);\">  (1)铭飞 / MCMS(开发人/项目名称)</span></span></p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  watch 1800 star 3400 fork 1800</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  项目介绍:</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  完整开源!Java快速开发平台!基于Spring、SpringMVC、Mybatis架构,MStore提供更多好用的插件与模板(文章、商城、微信、论坛、会员、评论、支付、积分、工作流、任务调度等,同时提供上百套免费模板任意选择),价值源自分享!铭飞系统不仅一套简单好用的开源系统、更是一整套优质的开源生态内容体系。铭飞的使命就是降低开发成本提高开发效率,提供全方位的企业级开发解决方案。</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  使用技术:</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  核心框架:Spring Framework 4</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  安全框架:Apache Shiro 1.2</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  视图框架:Spring MVC 4</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  任务调度:Spring Task 4</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  持久层框架:MyBatis 3</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  数据库连接池:Alibaba Druid 1.0</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  日志管理:SLF4J 1.7、Log4j</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  JS框架:jQuery 1.10</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  CSS框架:Twitter Bootstrap 2.3.1。</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  富文本:Ueditor</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  项目预览图:</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\"><img alt=\"国内有哪些较好的Java开源CMS建站系统?\" class=\"has\" src=\"/upload/1/cms/content/editor/1610000932423.jpg\" style=\"box-sizing: border-box; outline: none; border: 0px; max-width: 100%; height: auto; overflow-wrap: break-word; cursor: zoom-in;\"/></p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\"><img alt=\"国内有哪些较好的Java开源CMS建站系统?\" class=\"has\" src=\"/upload/1/cms/content/editor/1610000932622.jpg\" style=\"box-sizing: border-box; outline: none; border: 0px; max-width: 100%; height: auto; overflow-wrap: break-word; cursor: zoom-in;\"/></p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\"> <span style=\"box-sizing: border-box; outline: 0px; font-weight: 700; overflow-wrap: break-word;\"><span style=\"box-sizing: border-box; outline: 0px; margin: 0px; padding: 0px; overflow-wrap: break-word; color: rgb(243, 59, 69);\"> (2)Fly的狐狸 / jfinal_cms</span></span></p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  watch 713 star 1417 fork 822</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  项目介绍:</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  jfinal cms是一个java开发的功能强大的信息咨询网站,采用了简洁强大的JFinal作为web框架,模板引擎用的是beetl,数据库用mysql,前端bootstrap框架。 支持oauth2认证、帐号注册、密码加密、评论及回复,消息提示,网站访问量统计,文章评论数和浏览量统计,回复管理,支持权限管理。 后台模块包含:栏目管理,栏目公告,栏目滚动图片,文章管理,回复管理,意见反馈,我的相册,相册管理,图片管理,专辑管理、视频管理、缓存更新,友情链接,访问统计,联系人管理,模板管理,组织机构管理,用户管理,角色管理,菜单管理,数据字典管理。</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  使用技术:</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  jfinal cms,采用了简洁强大的JFinal作为web框架,模板引擎用的是beetl,数据库用mysql,前端bootstrap框架。</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  后台模块包含:栏目管理,栏目公告,栏目滚动图片,文章管理,回复管理,意见反馈,我的相册,相册管理,图片管理,专辑管理,视频管理,缓存更新,友情链接,访问统计,联系人管理,模板管理,组织机构管理,用户管理,角色管理,菜单管理,参数配置,数据字典管理。</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  后端模板支持:bootstrap默认样式、bootstrap黑色样式和flat-ui样式</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  前端模板支持:默认内容发布、官网模板、图片模板和视频模板</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  项目预览图:</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\"><img alt=\"国内有哪些较好的Java开源CMS建站系统?\" class=\"has\" src=\"/upload/1/cms/content/editor/1610000932670.gif\" style=\"box-sizing: border-box; outline: none; border: 0px; max-width: 100%; height: auto; overflow-wrap: break-word; cursor: zoom-in;\"/></p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\"><img alt=\"国内有哪些较好的Java开源CMS建站系统?\" class=\"has\" src=\"/upload/1/cms/content/editor/1610000932808.gif\" style=\"box-sizing: border-box; outline: none; border: 0px; max-width: 100%; height: auto; overflow-wrap: break-word; cursor: zoom-in;\"/></p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\"><span style=\"box-sizing: border-box; outline: 0px; margin: 0px; padding: 0px; overflow-wrap: break-word; color: rgb(243, 59, 69);\"><span style=\"box-sizing: border-box; outline: 0px; font-weight: 700; overflow-wrap: break-word;\">  (3)kerneler / PublicCMS</span></span></p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  watch 382 star 726 fork 370</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  项目介绍:</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  PublicCMS是采用2018年最新主流技术开发的开源JAVACMS系统。架构科学,轻松支持上千万数据、千万PV;支持全站静态化,SSI,动态页面局部静态化等为您快速建站,建设大规模站点提供强大驱动,也是企业级项目产品原型的良好选择。</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  使用技术:</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\"><img alt=\"国内有哪些较好的Java开源CMS建站系统?\" class=\"has\" src=\"/upload/1/cms/content/editor/1610000932910.jpg\" style=\"box-sizing: border-box; outline: none; border: 0px; max-width: 100%; height: auto; overflow-wrap: break-word; cursor: zoom-in;\"/></p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  项目预览图:</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\"><img alt=\"国内有哪些较好的Java开源CMS建站系统?\" class=\"has\" src=\"/upload/1/cms/content/editor/1610000932970.jpg\" style=\"box-sizing: border-box; outline: none; border: 0px; max-width: 100%; height: auto; overflow-wrap: break-word; cursor: zoom-in;\"/></p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\"><img alt=\"国内有哪些较好的Java开源CMS建站系统?\" class=\"has\" src=\"/upload/1/cms/content/editor/1610000932989.jpg\" style=\"box-sizing: border-box; outline: none; border: 0px; max-width: 100%; height: auto; overflow-wrap: break-word; cursor: zoom-in;\"/></p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  <span style=\"box-sizing: border-box; outline: 0px; margin: 0px; padding: 0px; overflow-wrap: break-word; color: rgb(243, 59, 69);\"><span style=\"box-sizing: border-box; outline: 0px; font-weight: 700; overflow-wrap: break-word;\">(4)付苗 / 51opencms</span></span></p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  watch 181 star 370 fork 133</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  项目介绍:</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  youngcms采用spring mvc ,mybatis,freemaker,mysql等技术开发完成,我们正在采用dubbo,activeMq消息队列,redis等技术进行全新的架构</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  项目预览图:</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\"><img alt=\"国内有哪些较好的Java开源CMS建站系统?\" class=\"has\" src=\"/upload/1/cms/content/editor/1610000933017.jpg\" style=\"box-sizing: border-box; outline: none; border: 0px; max-width: 100%; height: auto; overflow-wrap: break-word; cursor: zoom-in;\"/></p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\"><img alt=\"国内有哪些较好的Java开源CMS建站系统?\" class=\"has\" src=\"/upload/1/cms/content/editor/1610000933033.jpg\" style=\"box-sizing: border-box; outline: none; border: 0px; max-width: 100%; height: auto; overflow-wrap: break-word; cursor: zoom-in;\"/></p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\"><img alt=\"国内有哪些较好的Java开源CMS建站系统?\" class=\"has\" src=\"/upload/1/cms/content/editor/1610000933052.jpg\" style=\"box-sizing: border-box; outline: none; border: 0px; max-width: 100%; height: auto; overflow-wrap: break-word; cursor: zoom-in;\"/></p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\"><span style=\"box-sizing: border-box; outline: 0px; margin: 0px; padding: 0px; overflow-wrap: break-word; color: rgb(243, 59, 69);\"><span style=\"box-sizing: border-box; outline: 0px; font-weight: 700; overflow-wrap: break-word;\">  (5)jeffxu / tianti天梯</span></span></p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  watch 156 star 345 fork 174</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  项目介绍:</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  java轻量级的CMS系统-天梯。天梯是一个用java相关技术搭建的后台CMS解决方案,用户可以结合自身业务进行相应扩展,同时提供了针对dao、service等的代码生成工具。技术选型:Spring Data JPA、Hibernate、Shiro、 Spring MVC、Layer、Mysql等。</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  使用技术:</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  核心框架:Spring Framework 4.2.5.RELEASE</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  ·安全框架:Apache Shiro 1.3.2</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  ·视图框架:Spring MVC 4.2.5.RELEASE</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  ·数据库连接池:Tomcat JDBC</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  ·缓存框架:Ehcache</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  ·ORM框架:Spring Data JPA、hibernate 4.3.5.Final</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  ·日志管理:SLF4J 1.7.21、Log4j</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  ·编辑器:ueditor</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  ·工具类:Apache Commons、Jackson 2.8.5、POI 3.15</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  ·view层:JSP</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  ·数据库:mysql、oracle等关系型数据库</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  ·dom : Jquery</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  ·分页 : jquery.pagination</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  ·UI管理 : common</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  ·UI集成 : uiExtend</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  ·滚动条 : jquery.nicescroll.min.js</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  ·图表 : highcharts</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  ·3D图表 :highcharts-more</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  ·轮播图 : jquery-swipe</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  ·表单提交 :jquery.form</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  ·文件上传 :jquery.uploadify</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  ·表单验证 :jquery.validator</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  ·展现树 :jquery.ztree</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  ·html模版引擎 :template</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  项目预览图:</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\"><img alt=\"国内有哪些较好的Java开源CMS建站系统?\" class=\"has\" src=\"/upload/1/cms/content/editor/1610000933075.jpg\" style=\"box-sizing: border-box; outline: none; border: 0px; max-width: 100%; height: auto; overflow-wrap: break-word; cursor: zoom-in;\"/></p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\"><img alt=\"国内有哪些较好的Java开源CMS建站系统?\" class=\"has\" src=\"/upload/1/cms/content/editor/1610000933116.jpg\" style=\"box-sizing: border-box; outline: none; border: 0px; max-width: 100%; height: auto; overflow-wrap: break-word; cursor: zoom-in;\"/></p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\"><img alt=\"国内有哪些较好的Java开源CMS建站系统?\" class=\"has\" src=\"/upload/1/cms/content/editor/1610000933143.jpg\" style=\"box-sizing: border-box; outline: none; border: 0px; max-width: 100%; height: auto; overflow-wrap: break-word; cursor: zoom-in;\"/></p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\"><span style=\"box-sizing: border-box; outline: 0px; margin: 0px; padding: 0px; overflow-wrap: break-word; color: rgb(243, 59, 69);\"><span style=\"box-sizing: border-box; outline: 0px; font-weight: 700; overflow-wrap: break-word;\">  (6)SeeYoui / kensite_cms</span></span></p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  watch 197 star 320 fork 135</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  项目介绍:</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  KenSite是基于多个优秀的开源项目,高度整合封装而成的高效,高性能,强安全性的开源Java EE快速开发平台。</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  KenSite本身是以Spring Framework为核心容器,Spring MVC为模型视图控制器,MyBatis为数据访问层, Apache Shiro为权限授权层,Ehcahe对常用数据进行缓存,Quartz为定时任务计划管理。</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  KenSite 提供了常用工具进行封装,包括日志工具、缓存工具、服务器端验证、数据字典、当前组织机构数据以及其它常用小工具等。另外还提供一个强大的在线&nbsp;代码生成&nbsp;工具,直接生成controller、service、domain、mapper、mybatis xml、jsp等文件, 前端显示基于easyui,一键生成就可以直接使用包括新增修改删除等常规操作。 如果你使用了KenSite基础框架,就可以很高效的快速开发出,优秀的信息管理系统。</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  使用技术:</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  核心框架:Spring Framework 4.0</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  安全框架:Apache Shiro 1.2</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  视图框架:Spring MVC 4.0</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  服务端验证:Hibernate Validator 5.1</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  定时任务计划:Quartz</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  流程引擎:activiti 5.21.0</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  持久层框架:MyBatis 3.2</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  数据库连接池:Alibaba Druid 1.0</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  缓存框架:Ehcache 2.6、Redis</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  日志管理:SLF4J 1.7、Log4j</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  全文检索:lucene</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  验证码:patchca</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  WebService:CXF webservice</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  工具类:Apache Commons、Jackson 2.2、Xstream 1.4、Dozer 5.3、POI 3.9</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  JS框架:jQuery 1.9</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  CSS框架:Twitter Bootstrap 2.3.1</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  前端组件:easyui</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  客户端验证:JQuery Validation Plugin 1.11</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  富文本:Ueditor</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  对话框:layer、jquery-ui</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  上传空间:uploadify</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  树结构控件:jQuery zTree</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  日期控件: My97DatePicker</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  web excel插件:handsontable</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  统计图表:echarts</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\">  项目预览图:</p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\"><img alt=\"国内有哪些较好的Java开源CMS建站系统?\" class=\"has\" src=\"/upload/1/cms/content/editor/1610000933178.jpg\" style=\"box-sizing: border-box; outline: none; border: 0px; max-width: 100%; height: auto; overflow-wrap: break-word; cursor: zoom-in;\"/></p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\"><img alt=\"国内有哪些较好的Java开源CMS建站系统?\" class=\"has\" src=\"/upload/1/cms/content/editor/1610000933214.jpg\" style=\"box-sizing: border-box; outline: none; border: 0px; max-width: 100%; height: auto; overflow-wrap: break-word; cursor: zoom-in;\"/></p><p style=\"box-sizing: border-box; outline: 0px; margin-top: 0px; margin-bottom: 16px; padding: 0px; color: rgb(77, 77, 77); overflow: auto hidden; overflow-wrap: break-word; font-family: -apple-system, &quot;SF UI Text&quot;, Arial, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, sans-serif, SimHei, SimSun; white-space: normal; background-color: rgb(255, 255, 255); line-height: 26px !important;\"><img alt=\"国内有哪些较好的Java开源CMS建站系统?\" class=\"has\" src=\"/upload/1/cms/content/editor/1610000933236.jpg\" style=\"box-sizing: border-box; outline: none; border: 0px; max-width: 100%; height: auto; overflow-wrap: break-word; cursor: zoom-in;\"/></p><p><br/></p>', '【网站】国内 前6名 Java开源CMS建站系统', NULL, '', '下面我们开始分享一下开源中国中最火的Java开源CMS建站系统', '[{\"url\":\"/upload/1/cms/content/1609835629433.jpeg\",\"name\":\"a.jpeg\",\"path\":\"/upload/1/cms/content/1609835629433.jpeg\",\"uid\":1609835629283,\"status\":\"success\"}]', '', '', '0', '', '2022-02-27 11:42:04', 0, 3, '2022-02-27 11:42:04', '57', '2022-02-27 11:41:36', '57', 0);
  138. INSERT INTO `cms_content` VALUES (1346302136240926721, 1329258744783118337, '<h1 style=\"margin: 10px 0px; padding: 0px; font-size: 28px; line-height: 1.5;\">特点</h1><ul class=\"task-list list-paddingleft-2\" style=\"margin-left: 30px; padding: 0px; word-break: break-all;\"><li><p>免费完整开源:基于MIT协议,源代码完全开源,无商业限制,MS开发团队承诺将MCMS内容系统永久完整开源;</p></li><li><p>标签化建站:不需要专业的后台开发技能,只要使用系统提供的标签,就能轻松建设网站;</p></li><li><p>html静态化:系统支持全站静态化;</p></li><li><p>跨终端:站点同时支持PC与移动端访问,同时会自动根据访问的终端切换到对应的界面,数据由系统统一管理;</p></li><li><p>海量模版:铭飞通过MStore(MS商城)分享更多免费、精美的企业网站模版,降低建站成本;</p></li><li><p>丰富插件:为了让MCms适应更多的业务场景,在MStore用户可以下载对应的插件,如:站群插件、微信插件、商城插件等;</p></li><li><p>每月更新:铭飞团队承诺每月28日为系统升级日,分享更多好用等模版与插件;</p></li><li><p>文档丰富:为了让用户更快速的使用MCms系统进行开发,铭飞团队持续更新开发相关文档,如标签文档、使用文档、视频教程等;</p></li></ul><h1 style=\"margin: 10px 0px; padding: 0px; font-size: 28px; line-height: 1.5;\"><a id=\"面向对象_3\" class=\"anchor\" href=\"http://git.oschina.net/mingSoft/MCMS#%E9%9D%A2%E5%90%91%E5%AF%B9%E8%B1%A1_3\" style=\"margin: 0px; padding: 0px; color: rgb(51, 51, 51);\"></a>面向对象</h1><ul class=\"task-list list-paddingleft-2\" style=\"margin-left: 30px; padding: 0px; word-break: break-all;\"><li><p>铭飞MCMS是企业在创立初期很好的技术基础框架,加快公司项目开发进度,当然也可以对现有的系统进行升级;</p></li><li><p>个人开发者也可以使用MCMS承接外包项目;</p></li><li><p>初学JAVA的同学可以下载源代码来进行学习交流;</p></li></ul><h1 style=\"margin: 10px 0px; padding: 0px; font-size: 28px; line-height: 1.5;\"><a id=\"技术框架_4\" class=\"anchor\" href=\"http://git.oschina.net/mingSoft/MCMS#%E6%8A%80%E6%9C%AF%E6%A1%86%E6%9E%B6_4\" style=\"margin: 0px; padding: 0px; color: rgb(51, 51, 51);\"></a>技术框架</h1><ul class=\"task-list list-paddingleft-2\" style=\"margin-left: 30px; padding: 0px; word-break: break-all;\"><li><p>核心框架:Spring Framework 4</p></li><li><p>安全框架:Apache Shiro 1.2</p></li><li><p>视图框架:Spring MVC 4</p></li><li><p>任务调度:Spring Task 4</p></li><li><p>持久层框架:MyBatis 3</p></li><li><p>数据库连接池:Alibaba Druid 1.0</p></li><li><p>日志管理:SLF4J 1.7、Log4j</p></li><li><p>JS框架:jQuery 1.10</p></li><li><p>CSS框架:Twitter Bootstrap 2.3.1。</p></li><li><p>富文本:Ueditor</p></li></ul><h1 style=\"margin: 10px 0px; padding: 0px; font-size: 28px; line-height: 1.5;\"><a id=\"系统结构_5\" class=\"anchor\" href=\"http://git.oschina.net/mingSoft/MCMS#%E7%B3%BB%E7%BB%9F%E7%BB%93%E6%9E%84_5\" style=\"margin: 0px; padding: 0px; color: rgb(51, 51, 51);\"></a>系统结构</h1><p style=\"margin: 10px auto; padding: 0px; line-height: 1.5;\"><img class=\"md_relative_url\" title=\"在这里输入图片标题\" src=\"/ueditor/jsp/upload/image/20210105/1609818395900070630.jpg\" alt=\"输入图片说明\" style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; height: auto;\"/></p><h1 style=\"margin: 10px 0px; padding: 0px; font-size: 28px; line-height: 1.5;\"><a id=\"开发环境_6\" class=\"anchor\" href=\"http://git.oschina.net/mingSoft/MCMS#%E5%BC%80%E5%8F%91%E7%8E%AF%E5%A2%83_6\" style=\"margin: 0px; padding: 0px; color: rgb(51, 51, 51);\"></a>开发环境</h1><p style=\"margin: 10px auto; padding: 0px; line-height: 1.5;\">建议开发者使用以下环境,这样避免版本带来的问题</p><ul class=\"task-list list-paddingleft-2\" style=\"margin-left: 30px; padding: 0px; word-break: break-all;\"><li><p>IDE:eclipse</p></li><li><p>DB:Mysql5.5</p></li><li><p>JDK:JAVA 7、J2EE6</p></li><li><p>WEB:Tomcat8</p></li></ul><h1 style=\"margin: 10px 0px; padding: 0px; font-size: 28px; line-height: 1.5;\"><a id=\"运行环境_7\" class=\"anchor\" href=\"http://git.oschina.net/mingSoft/MCMS#%E8%BF%90%E8%A1%8C%E7%8E%AF%E5%A2%83_7\" style=\"margin: 0px; padding: 0px; color: rgb(51, 51, 51);\"></a>运行环境</h1><ul class=\"task-list list-paddingleft-2\" style=\"margin-left: 30px; padding: 0px; word-break: break-all;\"><li><p>WEB服务器:Weblogic、Tomcat、WebSphere、JBoss、Jetty 等</p></li><li><p>数据库服务器:Mysql5.5</p></li><li><p>操作系统:Windows、Linux、Unix 等</p></li></ul><h1 style=\"margin: 10px 0px; padding: 0px; font-size: 28px; line-height: 1.5;\"><a id=\"快速体验_8\" class=\"anchor\" href=\"http://git.oschina.net/mingSoft/MCMS#%E5%BF%AB%E9%80%9F%E4%BD%93%E9%AA%8C_8\" style=\"margin: 0px; padding: 0px; color: rgb(51, 51, 51);\"></a>快速体验</h1><ul class=\"task-list list-paddingleft-2\" style=\"margin-left: 30px; padding: 0px; word-break: break-all;\"><li><p>将MCMS项目源码导入eclipse;</p></li><li><p>创建数据库db-mcms-open,注意:数据库使用utf-8编码,导入doc/db-mcms-open.sql备份文件;</p></li><li><p>修改src\\main\\resources\\ms.properties文件中的数据库设置参数;</p></li><li><p>第一次启动必须先访问后台,后台访问地址:http://+ip地址(或localhost):tomcat端口/项目发布名/ms/login.do 必需先访问后台界面再访问前台界面</p></li><li><p>前台访问地址:<a href=\"http://xn--ip%28localhost%29-4v7w4gy75n:tomcat%E7%AB%AF%E5%8F%A3/%E9%A1%B9%E7%9B%AE%E5%8F%91%E5%B8%83%E5%90%8D\" target=\"_blank\" style=\"margin: 0px; padding: 0px; color: rgb(51, 51, 51);\">http://ip地址(或localhost):tomcat端口/项目发布名</a>,如果发布的地址不是<a href=\"http://localhost:8080/mcms\" target=\"_blank\" style=\"margin: 0px; padding: 0px; color: rgb(51, 51, 51);\">http://localhost:8080/mcms</a>,先在后台生成静态页面再进行访问</p></li><li><p>管理员账号,用户名:msopen 密码:msopen</p></li></ul><h1 style=\"margin: 10px 0px; padding: 0px; font-size: 28px; line-height: 1.5;\"><a id=\"文件说明_9\" class=\"anchor\" href=\"http://git.oschina.net/mingSoft/MCMS#%E6%96%87%E4%BB%B6%E8%AF%B4%E6%98%8E_9\" style=\"margin: 0px; padding: 0px; color: rgb(51, 51, 51);\"></a>文件说明</h1><ul class=\"task-list list-paddingleft-2\" style=\"margin-left: 30px; padding: 0px; word-break: break-all;\"><li><p>.externalToolBuilders eclipse缓存文件</p></li><li><p>.settings eclipse配置缓存文件</p></li><li><p>doc 项目文档文件夹,里面有数据库文件</p></li><li><p>src/main maven结构的项目源代码</p></li><li><p>java/com/mingsoft java源代码文件</p></li><li><p>resources 项目的资源配置文件</p></li><li><p>webapp<br style=\"margin: 0px; padding: 0px;\"/>META-INF&nbsp;<br style=\"margin: 0px; padding: 0px;\"/>WEB-INF&nbsp;<br style=\"margin: 0px; padding: 0px;\"/>manager&nbsp;<br style=\"margin: 0px; padding: 0px;\"/>html/1 默认生成的静态代码,实际项目需要删除,只是提供给开发者快速预览生成后的静态页面<br style=\"margin: 0px; padding: 0px;\"/>templets/1/mooc 默认模版<br style=\"margin: 0px; padding: 0px;\"/>upload&nbsp;</p></li><li><p>target 临时文件,可以删除让maven自动生成</p></li><li><p>.classpath eclipse配置缓存文件</p></li><li><p>.project eclipse配置缓存文件</p></li><li><p>LICENSE 项目协议说明</p></li><li><p>README.md 项目说明文档</p></li><li><p>pom.xml maven的依赖配置文件</p></li></ul><h1 style=\"margin: 10px 0px; padding: 0px; font-size: 28px; line-height: 1.5;\"><a id=\"代码部署与常见问题_10\" class=\"anchor\" href=\"http://git.oschina.net/mingSoft/MCMS#%E4%BB%A3%E7%A0%81%E9%83%A8%E7%BD%B2%E4%B8%8E%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98_10\" style=\"margin: 0px; padding: 0px; color: rgb(51, 51, 51);\"></a>代码部署与常见问题</h1><ul class=\"task-list list-paddingleft-2\" style=\"margin-left: 30px; padding: 0px; word-break: break-all;\"><li><p>铭飞MCms 部署视频&nbsp;<a href=\"http://ms.mingsoft.net/mbbs/13988/detail.do\" target=\"_blank\" style=\"margin: 0px; padding: 0px; color: rgb(51, 51, 51);\">http://ms.mingsoft.net/mbbs/13988/detail.do</a></p></li><li><p>MCms环境配置常见问题&nbsp;<a href=\"http://ms.mingsoft.net/mbbs/13000/detail.do\" target=\"_blank\" style=\"margin: 0px; padding: 0px; color: rgb(51, 51, 51);\">http://ms.mingsoft.net/mbbs/13000/detail.do</a></p></li><li><p>MStore使用方式:<a href=\"http://ms.mingsoft.net/mbbs/13008/detail.do\" target=\"_blank\" style=\"margin: 0px; padding: 0px; color: rgb(51, 51, 51);\">http://ms.mingsoft.net/mbbs/13008/detail.do</a></p></li></ul><h1 style=\"margin: 10px 0px; padding: 0px; font-size: 28px; line-height: 1.5;\"><a id=\"开源说明_11\" class=\"anchor\" href=\"http://git.oschina.net/mingSoft/MCMS#%E5%BC%80%E6%BA%90%E8%AF%B4%E6%98%8E_11\" style=\"margin: 0px; padding: 0px; color: rgb(51, 51, 51);\"></a>开源说明</h1><ul class=\"task-list list-paddingleft-2\" style=\"margin-left: 30px; padding: 0px; word-break: break-all;\"><li><p>系统100%开源</p></li><li><p>铭飞MCms是铭飞MS平台的一个子模块,同时铭飞MCms所依赖的模块都是用maven方式提供了源码获取方式,具体看pom.xml文件的&lt;!-- MAVEN源码加载 --&gt;部分</p></li></ul><h1 style=\"margin: 10px 0px; padding: 0px; font-size: 28px; line-height: 1.5;\"><a id=\"系统美图_12\" class=\"anchor\" href=\"http://git.oschina.net/mingSoft/MCMS#%E7%B3%BB%E7%BB%9F%E7%BE%8E%E5%9B%BE_12\" style=\"margin: 0px; padding: 0px; color: rgb(51, 51, 51);\"></a>系统美图</h1><p style=\"margin: 10px auto; padding: 0px; line-height: 1.5;\"><img class=\"md_relative_url\" title=\"铭飞模版商城,模版商城\" src=\"/ueditor/jsp/upload/image/20210105/1609818396224099515.jpg\" alt=\"输入图片说明\" style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; height: auto;\"/><br style=\"margin: 0px; padding: 0px;\"/><img class=\"md_relative_url\" title=\"铭飞模版商城,插件商城\" src=\"/ueditor/jsp/upload/image/20210105/1609818396728044765.png\" alt=\"输入图片说明\" style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; height: auto;\"/><br style=\"margin: 0px; padding: 0px;\"/><img class=\"md_relative_url\" title=\"铭飞内容管理系统后台演示\" src=\"/ueditor/jsp/upload/image/20210105/1609818396886062056.png\" alt=\"输入图片说明\" style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; height: auto;\"/></p><p><br/></p>', '铭飞MCMS内容管理系统完整开源版J2EE代码', '', '', '官网同时提供一键运行版本下载,请步移官网....', '[{\"url\":\"/upload/1/cms/content/1609835614568.jpeg\",\"name\":\"a.jpeg\",\"path\":\"/upload/1/cms/content/1609835614568.jpeg\",\"uid\":1609835614464,\"status\":\"success\"}]', '', '', '0', '', '2022-02-27 11:42:04', 0, 8, '2022-02-27 11:42:04', '57', '2022-02-27 11:41:36', '57', 0);
  139. COMMIT;
  140. -- ----------------------------
  141. -- Table structure for cms_history_log
  142. -- ----------------------------
  143. DROP TABLE IF EXISTS `cms_history_log`;
  144. CREATE TABLE `cms_history_log` (
  145. `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  146. `content_id` bigint(20) unsigned NOT NULL COMMENT '文章编号',
  147. `people_id` int(20) DEFAULT NULL COMMENT '用户id',
  148. `hl_ip` varchar(255) DEFAULT NULL COMMENT '浏览ip',
  149. `hl_is_mobile` varchar(255) DEFAULT NULL COMMENT '是否为移动端',
  150. `update_date` datetime DEFAULT NULL COMMENT '修改时间',
  151. `update_by` varchar(11) DEFAULT NULL COMMENT '修改人',
  152. `create_date` datetime DEFAULT NULL COMMENT '创建时间',
  153. `create_by` varchar(11) DEFAULT NULL COMMENT '创建人',
  154. `del` int(1) DEFAULT '0' COMMENT '删除标记',
  155. PRIMARY KEY (`id`) USING BTREE
  156. ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='文章浏览记录';
  157. -- ----------------------------
  158. -- Records of cms_history_log
  159. -- ----------------------------
  160. BEGIN;
  161. INSERT INTO `cms_history_log` VALUES (1, 1329374724146405378, NULL, '127.0.0.1', '0', NULL, NULL, '2021-05-28 16:32:32', NULL, 0);
  162. INSERT INTO `cms_history_log` VALUES (2, 1346302136240926721, NULL, '127.0.0.1', '0', NULL, NULL, '2021-12-28 22:02:52', NULL, 0);
  163. INSERT INTO `cms_history_log` VALUES (3, 1329374724146405378, NULL, '127.0.0.1', '0', NULL, NULL, '2022-02-27 11:38:42', NULL, 0);
  164. INSERT INTO `cms_history_log` VALUES (4, 1346299650146922497, NULL, '127.0.0.1', '0', NULL, NULL, '2022-02-27 11:38:45', NULL, 0);
  165. COMMIT;
  166. -- ----------------------------
  167. -- Table structure for logger
  168. -- ----------------------------
  169. DROP TABLE IF EXISTS `logger`;
  170. CREATE TABLE `logger` (
  171. `id` bigint(20) unsigned NOT NULL,
  172. `log_error_msg` text COMMENT '错误消息',
  173. `log_result` text COMMENT '返回参数',
  174. `log_param` text COMMENT '请求参数',
  175. `log_location` varchar(255) DEFAULT NULL COMMENT '所在地区',
  176. `log_user` varchar(255) DEFAULT NULL COMMENT '操作人员',
  177. `log_user_type` varchar(255) DEFAULT NULL COMMENT '用户类型',
  178. `log_business_type` varchar(255) DEFAULT NULL COMMENT '业务类型',
  179. `log_status` varchar(255) DEFAULT NULL COMMENT '请求状态',
  180. `log_url` varchar(255) DEFAULT NULL COMMENT '请求地址',
  181. `log_request_method` varchar(255) DEFAULT NULL COMMENT '请求方式',
  182. `log_method` varchar(255) DEFAULT NULL COMMENT '请求方法',
  183. `log_ip` varchar(255) DEFAULT NULL COMMENT 'IP',
  184. `log_title` varchar(255) DEFAULT NULL COMMENT '标题',
  185. `update_date` datetime DEFAULT NULL COMMENT '修改时间',
  186. `update_by` varchar(11) DEFAULT NULL COMMENT '修改人',
  187. `create_date` datetime DEFAULT NULL COMMENT '创建时间',
  188. `create_by` varchar(11) DEFAULT NULL COMMENT '创建人',
  189. `del` int(1) DEFAULT '0' COMMENT '删除标记',
  190. PRIMARY KEY (`id`) USING BTREE
  191. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='系统日志';
  192. -- ----------------------------
  193. -- Records of logger
  194. -- ----------------------------
  195. BEGIN;
  196. INSERT INTO `logger` VALUES (23, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '192.168.0.50', '生成主页', NULL, NULL, '2022-02-07 15:04:02', NULL, 0);
  197. INSERT INTO `logger` VALUES (24, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/genernateColumn.do', 'GET', 'net.mingsoft.cms.action.GeneraterAction.genernateColumn()', '192.168.0.50', '生成栏目', NULL, NULL, '2022-02-07 15:04:08', NULL, 0);
  198. INSERT INTO `logger` VALUES (25, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"dateTime\":[\"2017-02-07\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/generateArticle.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateArticle()', '192.168.0.50', '生成文章', NULL, NULL, '2022-02-07 15:04:13', NULL, 0);
  199. INSERT INTO `logger` VALUES (26, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"1329374891826290690\"\n }\n}', '{\n \"createBy\":[\"57\"],\n \"createDate\":[\"2020-11-19 18:44:07\"],\n \"del\":[\"0\"],\n \"id\":[\"1329374891826290690\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"57\"],\n \"updateDate\":[\"2021-01-06 18:52:19\"],\n \"order\":[\"\"],\n \"contentTitle\":[\"联系我们\"],\n \"categoryId\":[\"1329257594591715329\"],\n \"contentType\":[\"\"],\n \"contentDisplay\":[\"0\"],\n \"contentAuthor\":[\"\"],\n \"contentSource\":[\"\"],\n \"contentDatetime\":[\"2020-11-19 18:44:00\"],\n \"contentSort\":[\"0\"],\n \"contentImg\":[\"[]\"],\n \"contentDescription\":[\"\"],\n \"contentKeyword\":[\"\"],\n \"contentDetails\":[\"<p><span style=\\\"color: rgb(127, 127, 127);\\\">TEL:</span>19970180163</p><p><br/></p><p><span style=\\\"color: rgb(127, 127, 127);\\\">客服QQ:</span>942770163&nbsp; &nbsp; &nbsp;&nbsp;<span style=\\\"color: rgb(127, 127, 127);\\\">商务QQ:</span>3336073455</p><p><br/></p><p><span style=\\\"color: rgb(127, 127, 127);\\\">Email:</span>service@mingsoft.net</p><p><br/></p><p><span style=\\\"color: rgb(127, 127, 127);\\\">Addr:</span>江西省南昌市南昌高新技术产业开发区紫阳大道2999号紫阳明珠一期办公室楼503室</p><p><img width=\\\"530\\\" height=\\\"340\\\" src=\\\"http://api.map.baidu.com/staticimage?center=116.001482,28.681744&zoom=18&width=530&height=340&markers=116.001877,28.681396\\\"/></p><p></p>\"],\n \"contentUrl\":[\"\"],\n \"contentHit\":[\"\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/content/update.do', 'POST', 'net.mingsoft.cms.action.ContentAction.update()', '192.168.0.50', '更新文章', NULL, NULL, '2022-02-07 15:05:13', NULL, 0);
  200. INSERT INTO `logger` VALUES (27, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '192.168.0.50', '生成主页', NULL, NULL, '2022-02-07 15:05:20', NULL, 0);
  201. INSERT INTO `logger` VALUES (28, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/genernateColumn.do', 'GET', 'net.mingsoft.cms.action.GeneraterAction.genernateColumn()', '192.168.0.50', '生成栏目', NULL, NULL, '2022-02-07 15:05:23', NULL, 0);
  202. INSERT INTO `logger` VALUES (29, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"dateTime\":[\"2017-02-07\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/generateArticle.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateArticle()', '192.168.0.50', '生成文章', NULL, NULL, '2022-02-07 15:05:28', NULL, 0);
  203. INSERT INTO `logger` VALUES (30, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"1329374891826290690\"\n }\n}', '{\n \"createBy\":[\"57\"],\n \"createDate\":[\"2020-11-19 18:44:07\"],\n \"del\":[\"0\"],\n \"id\":[\"1329374891826290690\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"57\"],\n \"updateDate\":[\"2022-02-07 15:05:13\"],\n \"order\":[\"\"],\n \"contentTitle\":[\"联系我们\"],\n \"categoryId\":[\"1329257594591715329\"],\n \"contentType\":[\"\"],\n \"contentDisplay\":[\"0\"],\n \"contentAuthor\":[\"\"],\n \"contentSource\":[\"\"],\n \"contentDatetime\":[\"2020-11-19 18:44:00\"],\n \"contentSort\":[\"0\"],\n \"contentImg\":[\"[]\"],\n \"contentDescription\":[\"\"],\n \"contentKeyword\":[\"\"],\n \"contentDetails\":[\"<p><span style=\\\"color: rgb(127, 127, 127);\\\">TEL:</span>19970180163</p><p><br/></p><p><span style=\\\"color: rgb(127, 127, 127);\\\">客服QQ:</span>942770163&nbsp; &nbsp; &nbsp;&nbsp;<span style=\\\"color: rgb(127, 127, 127);\\\">商务QQ:</span>3336073455</p><p><br/></p><p><span style=\\\"color: rgb(127, 127, 127);\\\">Email:</span>service@mingsoft.net</p><p><br/></p><p><span style=\\\"color: rgb(127, 127, 127);\\\">Addr:</span>江西省南昌市南昌高新技术产业开发区紫阳大道2999号紫阳明珠一期办公室楼503室</p><p><br/></p><p><img width=\\\"530\\\" height=\\\"340\\\" src=\\\"http://api.map.baidu.com/staticimage?center=116.001482,28.681744&zoom=18&width=530&height=340&markers=116.001877,28.681396\\\"/></p><p><br/></p>\"],\n \"contentUrl\":[\"\"],\n \"contentHit\":[\"\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/content/update.do', 'POST', 'net.mingsoft.cms.action.ContentAction.update()', '192.168.0.50', '更新文章', NULL, NULL, '2022-02-07 15:06:22', NULL, 0);
  204. INSERT INTO `logger` VALUES (31, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"dateTime\":[\"2017-02-07\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/generateArticle.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateArticle()', '192.168.0.50', '生成文章', NULL, NULL, '2022-02-07 15:06:40', NULL, 0);
  205. INSERT INTO `logger` VALUES (32, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '192.168.0.50', '生成主页', NULL, NULL, '2022-02-07 15:06:48', NULL, 0);
  206. INSERT INTO `logger` VALUES (33, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/genernateColumn.do', 'GET', 'net.mingsoft.cms.action.GeneraterAction.genernateColumn()', '192.168.0.50', '生成栏目', NULL, NULL, '2022-02-07 15:06:52', NULL, 0);
  207. INSERT INTO `logger` VALUES (34, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"fileUrl\":[\"/template/1/1644217656483.zip\"]\n}', '内网IP', 'msopen', 'manage', 'other', 'success', '/ms/template/unZip.do', 'GET', 'net.mingsoft.basic.action.TemplateAction.unZip()', '192.168.0.50', '解压zip模版文件', NULL, NULL, '2022-02-07 15:07:37', NULL, 0);
  208. INSERT INTO `logger` VALUES (35, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"fileName\":[\"xydz\"]\n}', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/template/delete.do', 'POST', 'net.mingsoft.basic.action.TemplateAction.delete()', '192.168.0.50', '删除模版', NULL, NULL, '2022-02-07 15:07:41', NULL, 0);
  209. INSERT INTO `logger` VALUES (1497764706037542913, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":\"1700\"\n}', '{\n \"createBy\":[\"\"],\n \"createDate\":[\"\"],\n \"del\":[\"0\"],\n \"id\":[\"1700\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"\"],\n \"updateDate\":[\"\"],\n \"order\":[\"\"],\n \"modelTitle\":[\"自定义模块\"],\n \"modelUrl\":[\"\"],\n \"modelCode\":[\"16197622071887865\"],\n \"isChild\":[\"\"],\n \"modelIcon\":[\"icon-zhanqun\"],\n \"modelSort\":[\"0\"],\n \"modelIsMenu\":[\"1\"],\n \"chick\":[\"0\"],\n \"depth\":[\"0\"],\n \"modelParentIds\":[\"\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/model/update.do', 'POST', 'net.mingsoft.basic.action.ModelAction.update()', '127.0.0.1', '更新模块表信息模块表', NULL, NULL, '2022-02-27 10:45:08', NULL, 0);
  210. INSERT INTO `logger` VALUES (1497765280401338370, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":\"1700\"\n}', '{\n \"createBy\":[\"\"],\n \"createDate\":[\"\"],\n \"del\":[\"0\"],\n \"id\":[\"1700\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"\"],\n \"updateDate\":[\"\"],\n \"order\":[\"\"],\n \"modelTitle\":[\"自定义模块\"],\n \"modelUrl\":[\"\"],\n \"modelCode\":[\"16197622071887865\"],\n \"isChild\":[\"\"],\n \"modelIcon\":[\"icon-zhanqun\"],\n \"modelSort\":[\"0\"],\n \"modelIsMenu\":[\"1\"],\n \"chick\":[\"0\"],\n \"depth\":[\"0\"],\n \"modelParentIds\":[\"\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/model/update.do', 'POST', 'net.mingsoft.basic.action.ModelAction.update()', '127.0.0.1', '更新模块表信息模块表', NULL, NULL, '2022-02-27 10:47:25', NULL, 0);
  211. INSERT INTO `logger` VALUES (1497765618449657857, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":\"1700\"\n}', '{\n \"createBy\":[\"\"],\n \"createDate\":[\"\"],\n \"del\":[\"0\"],\n \"id\":[\"1700\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"\"],\n \"updateDate\":[\"\"],\n \"order\":[\"\"],\n \"modelTitle\":[\"自定义模块\"],\n \"modelUrl\":[\"\"],\n \"modelCode\":[\"16197622071887865\"],\n \"isChild\":[\"\"],\n \"modelIcon\":[\"icon-zhanqun\"],\n \"modelSort\":[\"0\"],\n \"modelIsMenu\":[\"1\"],\n \"chick\":[\"0\"],\n \"depth\":[\"0\"],\n \"modelParentIds\":[\"\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/model/update.do', 'POST', 'net.mingsoft.basic.action.ModelAction.update()', '127.0.0.1', '更新模块表信息模块表', NULL, NULL, '2022-02-27 10:48:45', NULL, 0);
  212. INSERT INTO `logger` VALUES (1497765656219365377, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"48\"\n }\n}', '{\n \"createBy\":[\"\"],\n \"createDate\":[\"\"],\n \"del\":[\"0\"],\n \"id\":[\"48\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"\"],\n \"updateDate\":[\"\"],\n \"order\":[\"\"],\n \"roleName\":[\"msopen\"],\n \"notDel\":[\"0\"],\n \"ids\":[\"182,204,672,673,184,201,202,668,407,408,409,412,663,664,665,686,718,719,720,721,715,716,717,1653,710,711,713,714,1702,1703,1704,1705,1706,1708,1709,1710,1711,1712,1714,1715,1716,1717,1718,1733,1720,1721,1722,1723,1725,1726,1727,1728,1729,1730,1731,1732,84,86,87,23,183,406,411,685,706,707,708,709,1700,1701,1707,1713,1719,1724\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/basic/role/saveOrUpdateRole.do', 'POST', 'net.mingsoft.basic.action.RoleAction.saveOrUpdateRole()', '127.0.0.1', '保存角色实体', NULL, NULL, '2022-02-27 10:48:54', NULL, 0);
  213. INSERT INTO `logger` VALUES (1497766040509886465, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"48\"\n }\n}', '{\n \"createBy\":[\"\"],\n \"createDate\":[\"\"],\n \"del\":[\"0\"],\n \"id\":[\"48\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"\"],\n \"updateDate\":[\"\"],\n \"order\":[\"\"],\n \"roleName\":[\"默认角色\"],\n \"notDel\":[\"0\"],\n \"ids\":[\"182,204,672,673,184,201,202,668,407,408,409,412,663,664,665,686,718,719,720,721,715,716,717,1653,710,711,713,714,1702,1703,1704,1705,1706,1708,1709,1710,1711,1712,1714,1715,1716,1717,1718,1733,1720,1721,1722,1723,1725,1726,1727,1728,1729,1730,1731,1732,84,86,87,23,183,406,411,685,706,707,708,709,1700,1701,1707,1713,1719,1724\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/basic/role/saveOrUpdateRole.do', 'POST', 'net.mingsoft.basic.action.RoleAction.saveOrUpdateRole()', '127.0.0.1', '保存角色实体', NULL, NULL, '2022-02-27 10:50:26', NULL, 0);
  214. INSERT INTO `logger` VALUES (1497766566031122433, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"createBy\":[\"\"],\n \"createDate\":[\"\"],\n \"del\":[\"0\"],\n \"id\":[\"1\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"57\"],\n \"updateDate\":[\"2021-05-28 14:25:46\"],\n \"order\":[\"\"],\n \"appState\":[\"0\"],\n \"appName\":[\"铭飞MCms(5.2.6)\"],\n \"appDescription\":[\"铭飞MCMS\"],\n \"appLogo\":[\"[{\\\"url\\\":\\\"/upload/1/appLogo/1609397756549.png\\\",\\\"name\\\":\\\"1593834123492.png\\\",\\\"path\\\":\\\"/upload/1/appLogo/1609397756549.png\\\",\\\"uid\\\":1609397756411,\\\"status\\\":\\\"success\\\"}]\"],\n \"appStyle\":[\"default\"],\n \"appKeyword\":[\"铭飞MCMS\"],\n \"appCopyright\":[\"版权所有 ©铭飞科技有限公司2012-2019 保留一切权利。\"],\n \"appDir\":[\"web\"],\n \"appUrl\":[\"http://localhost:8080/\"],\n \"appDatetime\":[\"\"],\n \"appPayDate\":[\"2019-11-17\"],\n \"appPay\":[\"\"],\n \"appId\":[\"1\"],\n \"appHostUrl\":[\"http://localhost:8080/\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/app/update.do', 'POST', 'net.mingsoft.basic.action.AppAction.update()', '127.0.0.1', '更新站点信息', NULL, NULL, '2022-02-27 10:52:31', NULL, 0);
  215. INSERT INTO `logger` VALUES (1497768541707689986, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"1\"\n }\n}', '{\n \"pageType\":[\"cms\"],\n \"pageTitle\":[\"a\"],\n \"pagePath\":[\"about.htm\"],\n \"pageKey\":[\"c\"]\n}', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/page/save.do', 'POST', 'net.mingsoft.mdiy.action.PageAction.save()', '127.0.0.1', '保存自定义页面接口', NULL, NULL, '2022-02-27 11:00:22', NULL, 0);
  216. INSERT INTO `logger` VALUES (1497768559814500354, '\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column \'not_del\' in \'where clause\'\n### The error may exist in net/mingsoft/mdiy/dao/IPageDao.xml\n### The error may involve defaultParameterMap\n### The error occurred while setting parameters\n### SQL: delete from mdiy_page WHERE id in (? ) and not_del != 1\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column \'not_del\' in \'where clause\'\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Unknown column \'not_del\' in \'where clause\'', 'null', '[\n {\n \"createBy\":\"57\",\n \"createDate\":\"2022-02-27 11:00:22\",\n \"del\":0,\n \"id\":\"1\",\n \"notDel\":0,\n \"pageKey\":\"c\",\n \"pagePath\":\"about.htm\",\n \"pageTitle\":\"a\",\n \"pageType\":\"cms\",\n \"sqlWhereList\":[],\n \"updateDate\":\"2022-02-27 11:00:22\"\n }\n]', '内网IP', 'msopen', 'manage', 'delete', 'error', '/ms/mdiy/page/delete.do', 'POST', 'net.mingsoft.mdiy.action.PageAction.delete()', '127.0.0.1', '批量删除自定义页面接口', NULL, NULL, '2022-02-27 11:00:27', NULL, 0);
  217. INSERT INTO `logger` VALUES (1497769039449939969, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"createBy\":\"57\",\n \"createDate\":\"2022-02-27 11:00:22\",\n \"del\":0,\n \"id\":\"1\",\n \"notDel\":0,\n \"pageKey\":\"c\",\n \"pagePath\":\"about.htm\",\n \"pageTitle\":\"a\",\n \"pageType\":\"cms\",\n \"sqlWhereList\":[],\n \"updateDate\":\"2022-02-27 11:00:22\"\n }\n]', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/mdiy/page/delete.do', 'POST', 'net.mingsoft.mdiy.action.PageAction.delete()', '127.0.0.1', '批量删除自定义页面接口', NULL, NULL, '2022-02-27 11:02:21', NULL, 0);
  218. INSERT INTO `logger` VALUES (1497770774105022466, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"createBy\":\"57\",\n \"createDate\":\"2022-02-27 11:00:22\",\n \"del\":0,\n \"id\":\"1\",\n \"notDel\":0,\n \"pageKey\":\"c\",\n \"pagePath\":\"about.htm\",\n \"pageTitle\":\"a\",\n \"pageType\":\"cms\",\n \"sqlWhereList\":[],\n \"updateDate\":\"2022-02-27 11:00:22\"\n }\n]', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/mdiy/page/delete.do', 'POST', 'net.mingsoft.mdiy.action.PageAction.delete()', '127.0.0.1', '批量删除自定义页面接口', NULL, NULL, '2022-02-27 11:09:14', NULL, 0);
  219. INSERT INTO `logger` VALUES (1497770876118884353, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"createBy\":\"57\",\n \"createDate\":\"2022-02-27 11:00:22\",\n \"del\":0,\n \"id\":\"1\",\n \"notDel\":0,\n \"pageKey\":\"c\",\n \"pagePath\":\"about.htm\",\n \"pageTitle\":\"a\",\n \"pageType\":\"cms\",\n \"sqlWhereList\":[],\n \"updateDate\":\"2022-02-27 11:00:22\"\n }\n]', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/mdiy/page/delete.do', 'POST', 'net.mingsoft.mdiy.action.PageAction.delete()', '127.0.0.1', '批量删除自定义页面接口', NULL, NULL, '2022-02-27 11:09:39', NULL, 0);
  220. INSERT INTO `logger` VALUES (1497771819635957761, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"2\"\n }\n}', '{\n \"pageType\":[\"cms\"],\n \"pageTitle\":[\"a\"],\n \"pagePath\":[\"product-detail.htm\"],\n \"pageKey\":[\"f\"]\n}', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/page/save.do', 'POST', 'net.mingsoft.mdiy.action.PageAction.save()', '127.0.0.1', '保存自定义页面接口', NULL, NULL, '2022-02-27 11:13:24', NULL, 0);
  221. INSERT INTO `logger` VALUES (1497771833074507777, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"createBy\":\"57\",\n \"createDate\":\"2022-02-27 11:13:24\",\n \"del\":0,\n \"id\":\"2\",\n \"notDel\":0,\n \"pageKey\":\"f\",\n \"pagePath\":\"product-detail.htm\",\n \"pageTitle\":\"a\",\n \"pageType\":\"cms\",\n \"sqlWhereList\":[],\n \"updateDate\":\"2022-02-27 11:13:24\"\n }\n]', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/mdiy/page/delete.do', 'POST', 'net.mingsoft.mdiy.action.PageAction.delete()', '127.0.0.1', '批量删除自定义页面接口', NULL, NULL, '2022-02-27 11:13:27', NULL, 0);
  222. INSERT INTO `logger` VALUES (1497771886350557186, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"3\"\n }\n}', '{\n \"pageType\":[\"cms\"],\n \"pageTitle\":[\"a\"],\n \"pagePath\":[\"product-detail.htm\"],\n \"pageKey\":[\"f\"],\n \"id\":[\"0\"]\n}', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/page/save.do', 'POST', 'net.mingsoft.mdiy.action.PageAction.save()', '127.0.0.1', '保存自定义页面接口', NULL, NULL, '2022-02-27 11:13:40', NULL, 0);
  223. INSERT INTO `logger` VALUES (1497771899902353409, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"createBy\":\"57\",\n \"createDate\":\"2022-02-27 11:13:40\",\n \"del\":0,\n \"id\":\"3\",\n \"notDel\":0,\n \"pageKey\":\"f\",\n \"pagePath\":\"product-detail.htm\",\n \"pageTitle\":\"a\",\n \"pageType\":\"cms\",\n \"sqlWhereList\":[],\n \"updateDate\":\"2022-02-27 11:13:40\"\n }\n]', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/mdiy/page/delete.do', 'POST', 'net.mingsoft.mdiy.action.PageAction.delete()', '127.0.0.1', '批量删除自定义页面接口', NULL, NULL, '2022-02-27 11:13:43', NULL, 0);
  224. INSERT INTO `logger` VALUES (1497772008329306114, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"4\"\n }\n}', '{\n \"pageType\":[\"cms\"],\n \"pageTitle\":[\"a\"],\n \"pagePath\":[\"head-file.htm\"],\n \"pageKey\":[\"f\"]\n}', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/page/save.do', 'POST', 'net.mingsoft.mdiy.action.PageAction.save()', '127.0.0.1', '保存自定义页面接口', NULL, NULL, '2022-02-27 11:14:09', NULL, 0);
  225. INSERT INTO `logger` VALUES (1497772018521464834, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"createBy\":\"57\",\n \"createDate\":\"2022-02-27 11:14:09\",\n \"del\":0,\n \"id\":\"4\",\n \"notDel\":0,\n \"pageKey\":\"f\",\n \"pagePath\":\"head-file.htm\",\n \"pageTitle\":\"a\",\n \"pageType\":\"cms\",\n \"sqlWhereList\":[],\n \"updateDate\":\"2022-02-27 11:14:09\"\n }\n]', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/mdiy/page/delete.do', 'POST', 'net.mingsoft.mdiy.action.PageAction.delete()', '127.0.0.1', '批量删除自定义页面接口', NULL, NULL, '2022-02-27 11:14:11', NULL, 0);
  226. INSERT INTO `logger` VALUES (1497772337133379585, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"modelType\":[\"cms\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqKeywords\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"关键字\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"input\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqMsg\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"消息\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqImage\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"图片\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n ', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/model/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.importJson()', '127.0.0.1', '导入自定义模型', NULL, NULL, '2022-02-27 11:15:27', NULL, 0);
  227. INSERT INTO `logger` VALUES (1497772355252772865, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"del\":0,\n \"fieldMap\":{\n \"qqImage\":\"QQ_IMAGE\",\n \"qqKeywords\":\"QQ_KEYWORDS\",\n \"qqMsg\":\"QQ_MSG\"\n },\n \"formUrl\":\"f2c131968438246e885e0feed7256dbc\",\n \"id\":\"1\",\n \"modelCustomType\":\"model\",\n \"modelField\":\"[\\n {\\n \\\"model\\\":\\\"qqKeywords\\\",\\n \\\"key\\\":\\\"QQ_KEYWORDS\\\",\\n \\\"field\\\":\\\"QQ_KEYWORDS\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"关键字\\\",\\n \\\"type\\\":\\\"input\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"true\\\"\\n }\\n ,{\\n \\\"model\\\":\\\"qqMsg\\\",\\n \\\"key\\\":\\\"QQ_MSG\\\",\\n \\\"field\\\":\\\"QQ_MSG\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"消息\\\",\\n \\\"type\\\":\\\"textarea\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"true\\\"\\n }\\n ,{\\n \\\"model\\\":\\\"qqImage\\\",\\n \\\"key\\\":\\\"QQ_IMAGE\\\",\\n \\\"field\\\":\\\"QQ_IMAGE\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"图片\\\",\\n \\\"type\\\":\\\"textarea\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"true\\\"\\n }\\n]\\n\\n\",\n \"modelJson\":\"{\\\"searchJson\\\":\\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\\"isWebSubmit\\\":false,\\\"html\\\":\\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/mdiy/model/delete.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.delete()', '127.0.0.1', '批量删除自定义模型', NULL, NULL, '2022-02-27 11:15:31', NULL, 0);
  228. INSERT INTO `logger` VALUES (1497772407211810818, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"1\"\n }\n}', '{\n \"id\":[\"\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqKeywords\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"关键字\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"input\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqMsg\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"消息\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqImage\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"图片\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n </el-in', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/config/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ConfigAction.importJson()', '127.0.0.1', '导入', NULL, NULL, '2022-02-27 11:15:44', NULL, 0);
  229. INSERT INTO `logger` VALUES (1497772453680504834, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'QQ消息配置\' for key \'indx_model_name\'\n### The error may exist in net/mingsoft/mdiy/dao/IModelDao.java (best guess)\n### The error may involve net.mingsoft.mdiy.dao.IModelDao.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO mdiy_model ( model_name, model_table_name, not_del, model_type, model_custom_type, model_json, model_field, del ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'QQ消息配置\' for key \'indx_model_name\'\n; Duplicate entry \'QQ消息配置\' for key \'indx_model_name\'; nested exception is java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'QQ消息配置\' for key \'indx_model_name\'', 'null', '{\n \"id\":[\"\"],\n \"modelType\":[\"cms\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqKeywords\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"关键字\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"input\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqMsg\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"消息\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqImage\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"图片\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n ', '内网IP', 'msopen', 'manage', 'insert', 'error', '/ms/mdiy/model/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.importJson()', '127.0.0.1', '导入自定义模型', NULL, NULL, '2022-02-27 11:15:55', NULL, 0);
  230. INSERT INTO `logger` VALUES (1497772582751821826, '\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Table \'mdiy_model_robotqq\' already exists\n### The error may exist in net/mingsoft/base/dao/IBaseDao.xml\n### The error may involve net.mingsoft.base.dao.IBaseDao.excuteSql\n### The error occurred while executing a query\n### SQL: -- ROBOTQQ CREATE TABLE `MDIY_MODEL_ROBOTQQ` ( `id` BIGINT(11) UNSIGNED NOT NULL AUTO_INCREMENT, `QQ_KEYWORDS` VARCHAR(255) DEFAULT NULL COMMENT \'关键字\', `QQ_MSG` VARCHAR(255) DEFAULT NULL COMMENT \'消息\', `QQ_IMAGE` VARCHAR(255) DEFAULT NULL COMMENT \'图片\', `LINK_ID` BIGINT(20) DEFAULT NULL, `CREATE_DATE` DATETIME DEFAULT NULL COMMENT \'创建时间\', `CREATE_BY` VARCHAR(50) DEFAULT NULL COMMENT \'创建人\', `UPDATE_DATE` DATETIME DEFAULT NULL COMMENT \'修改时间\', `UPDATE_BY` VARCHAR(50) DEFAULT NULL COMMENT \'修改人\', `DEL` INT(1) DEFAULT 0 COMMENT \'删除标记\', PRIMARY KEY (`ID`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT=\'QQ消息配置\'\n### Cause: java.sql.SQLSyntaxErrorException: Table \'mdiy_model_robotqq\' already exists\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Table \'mdiy_model_robotqq\' already exists', 'null', '{\n \"id\":[\"\"],\n \"modelType\":[\"cms\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqKeywords\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"关键字\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"input\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqMsg\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"消息\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqImage\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"图片\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n ', '内网IP', 'msopen', 'manage', 'insert', 'error', '/ms/mdiy/model/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.importJson()', '127.0.0.1', '导入自定义模型', NULL, NULL, '2022-02-27 11:16:26', NULL, 0);
  231. INSERT INTO `logger` VALUES (1497772729611182081, '\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Table \'mdiy_model_robotqq\' already exists\n### The error may exist in net/mingsoft/base/dao/IBaseDao.xml\n### The error may involve net.mingsoft.base.dao.IBaseDao.excuteSql\n### The error occurred while executing a query\n### SQL: -- ROBOTQQ CREATE TABLE `MDIY_MODEL_ROBOTQQ` ( `id` BIGINT(11) UNSIGNED NOT NULL AUTO_INCREMENT, `QQ_KEYWORDS` VARCHAR(255) DEFAULT NULL COMMENT \'关键字\', `QQ_MSG` VARCHAR(255) DEFAULT NULL COMMENT \'消息\', `QQ_IMAGE` VARCHAR(255) DEFAULT NULL COMMENT \'图片\', `LINK_ID` BIGINT(20) DEFAULT NULL, `CREATE_DATE` DATETIME DEFAULT NULL COMMENT \'创建时间\', `CREATE_BY` VARCHAR(50) DEFAULT NULL COMMENT \'创建人\', `UPDATE_DATE` DATETIME DEFAULT NULL COMMENT \'修改时间\', `UPDATE_BY` VARCHAR(50) DEFAULT NULL COMMENT \'修改人\', `DEL` INT(1) DEFAULT 0 COMMENT \'删除标记\', PRIMARY KEY (`ID`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT=\'QQ消息配置\'\n### Cause: java.sql.SQLSyntaxErrorException: Table \'mdiy_model_robotqq\' already exists\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Table \'mdiy_model_robotqq\' already exists', 'null', '{\n \"id\":[\"\"],\n \"modelType\":[\"cms\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqKeywords\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"关键字\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"input\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqMsg\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"消息\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqImage\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"图片\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n ', '内网IP', 'msopen', 'manage', 'insert', 'error', '/ms/mdiy/model/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.importJson()', '127.0.0.1', '导入自定义模型', NULL, NULL, '2022-02-27 11:17:01', NULL, 0);
  232. INSERT INTO `logger` VALUES (1497773287420059649, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'QQ消息配置\' for key \'indx_model_name\'\n### The error may exist in net/mingsoft/mdiy/dao/IModelDao.java (best guess)\n### The error may involve net.mingsoft.mdiy.dao.IModelDao.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO mdiy_model ( model_name, model_table_name, not_del, model_type, model_custom_type, model_json, model_field, del ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'QQ消息配置\' for key \'indx_model_name\'\n; Duplicate entry \'QQ消息配置\' for key \'indx_model_name\'; nested exception is java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'QQ消息配置\' for key \'indx_model_name\'', 'null', '{\n \"id\":[\"\"],\n \"modelType\":[\"cms\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqKeywords\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"关键字\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"input\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqMsg\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"消息\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqImage\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"图片\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n ', '内网IP', 'msopen', 'manage', 'insert', 'error', '/ms/mdiy/model/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.importJson()', '127.0.0.1', '导入自定义模型', NULL, NULL, '2022-02-27 11:19:14', NULL, 0);
  233. INSERT INTO `logger` VALUES (1497773367103447041, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'QQ消息配置\' for key \'indx_model_name\'\n### The error may exist in net/mingsoft/mdiy/dao/IModelDao.java (best guess)\n### The error may involve net.mingsoft.mdiy.dao.IModelDao.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO mdiy_model ( model_name, model_table_name, not_del, model_type, model_custom_type, model_json, model_field, del ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'QQ消息配置\' for key \'indx_model_name\'\n; Duplicate entry \'QQ消息配置\' for key \'indx_model_name\'; nested exception is java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'QQ消息配置\' for key \'indx_model_name\'', 'null', '{\n \"id\":[\"\"],\n \"modelType\":[\"cms\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqKeywords\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"关键字\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"input\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqMsg\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"消息\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqImage\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"图片\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n ', '内网IP', 'msopen', 'manage', 'insert', 'error', '/ms/mdiy/model/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.importJson()', '127.0.0.1', '导入自定义模型', NULL, NULL, '2022-02-27 11:19:33', NULL, 0);
  234. INSERT INTO `logger` VALUES (1497773545176817665, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"del\":0,\n \"fieldMap\":{\n \"qqImage\":\"QQ_IMAGE\",\n \"qqKeywords\":\"QQ_KEYWORDS\",\n \"qqMsg\":\"QQ_MSG\"\n },\n \"formUrl\":\"d04e20f45cdb3e828ba62773d4302193\",\n \"id\":\"2\",\n \"modelCustomType\":\"config\",\n \"modelField\":\"[\\n {\\n \\\"model\\\":\\\"qqKeywords\\\",\\n \\\"key\\\":\\\"QQ_KEYWORDS\\\",\\n \\\"field\\\":\\\"QQ_KEYWORDS\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"关键字\\\",\\n \\\"type\\\":\\\"input\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"true\\\"\\n }\\n ,{\\n \\\"model\\\":\\\"qqMsg\\\",\\n \\\"key\\\":\\\"QQ_MSG\\\",\\n \\\"field\\\":\\\"QQ_MSG\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"消息\\\",\\n \\\"type\\\":\\\"textarea\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"true\\\"\\n }\\n ,{\\n \\\"model\\\":\\\"qqImage\\\",\\n \\\"key\\\":\\\"QQ_IMAGE\\\",\\n \\\"field\\\":\\\"QQ_IMAGE\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"图片\\\",\\n \\\"type\\\":\\\"textarea\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"true\\\"\\n }\\n]\\n\\n\",\n \"modelJson\":\"{\\\"searchJson\\\":\\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\\"isWebSubmit\\\":false,\\\"html\\\":\\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\"', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/mdiy/config/delete.do', 'POST', 'net.mingsoft.mdiy.action.ConfigAction.delete()', '127.0.0.1', '批量删除自定义模型列表接口', NULL, NULL, '2022-02-27 11:20:15', NULL, 0);
  235. INSERT INTO `logger` VALUES (1497773585295335426, '\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Table \'mdiy_model_robotqq\' already exists\n### The error may exist in net/mingsoft/base/dao/IBaseDao.xml\n### The error may involve net.mingsoft.base.dao.IBaseDao.excuteSql\n### The error occurred while executing a query\n### SQL: -- ROBOTQQ CREATE TABLE `MDIY_MODEL_ROBOTQQ` ( `id` BIGINT(11) UNSIGNED NOT NULL AUTO_INCREMENT, `QQ_KEYWORDS` VARCHAR(255) DEFAULT NULL COMMENT \'关键字\', `QQ_MSG` VARCHAR(255) DEFAULT NULL COMMENT \'消息\', `QQ_IMAGE` VARCHAR(255) DEFAULT NULL COMMENT \'图片\', `LINK_ID` BIGINT(20) DEFAULT NULL, `CREATE_DATE` DATETIME DEFAULT NULL COMMENT \'创建时间\', `CREATE_BY` VARCHAR(50) DEFAULT NULL COMMENT \'创建人\', `UPDATE_DATE` DATETIME DEFAULT NULL COMMENT \'修改时间\', `UPDATE_BY` VARCHAR(50) DEFAULT NULL COMMENT \'修改人\', `DEL` INT(1) DEFAULT 0 COMMENT \'删除标记\', PRIMARY KEY (`ID`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT=\'QQ消息配置\'\n### Cause: java.sql.SQLSyntaxErrorException: Table \'mdiy_model_robotqq\' already exists\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Table \'mdiy_model_robotqq\' already exists', 'null', '{\n \"id\":[\"\"],\n \"modelType\":[\"cms\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqKeywords\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"关键字\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"input\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqMsg\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"消息\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqImage\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"图片\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n ', '内网IP', 'msopen', 'manage', 'insert', 'error', '/ms/mdiy/model/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.importJson()', '127.0.0.1', '导入自定义模型', NULL, NULL, '2022-02-27 11:20:25', NULL, 0);
  236. INSERT INTO `logger` VALUES (1497773668921368578, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"id\":[\"\"],\n \"modelType\":[\"cms\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqKeywords\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"关键字\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"input\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqMsg\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"消息\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqImage\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"图片\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n ', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/model/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.importJson()', '127.0.0.1', '导入自定义模型', NULL, NULL, '2022-02-27 11:20:45', NULL, 0);
  237. INSERT INTO `logger` VALUES (1497773692191367170, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"del\":0,\n \"fieldMap\":{\n \"qqImage\":\"QQ_IMAGE\",\n \"qqKeywords\":\"QQ_KEYWORDS\",\n \"qqMsg\":\"QQ_MSG\"\n },\n \"formUrl\":\"94e62d8fc44a301bb0fe05e38770283d\",\n \"id\":\"6\",\n \"modelCustomType\":\"model\",\n \"modelField\":\"[\\n {\\n \\\"model\\\":\\\"qqKeywords\\\",\\n \\\"key\\\":\\\"QQ_KEYWORDS\\\",\\n \\\"field\\\":\\\"QQ_KEYWORDS\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"关键字\\\",\\n \\\"type\\\":\\\"input\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"true\\\"\\n }\\n ,{\\n \\\"model\\\":\\\"qqMsg\\\",\\n \\\"key\\\":\\\"QQ_MSG\\\",\\n \\\"field\\\":\\\"QQ_MSG\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"消息\\\",\\n \\\"type\\\":\\\"textarea\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"true\\\"\\n }\\n ,{\\n \\\"model\\\":\\\"qqImage\\\",\\n \\\"key\\\":\\\"QQ_IMAGE\\\",\\n \\\"field\\\":\\\"QQ_IMAGE\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"图片\\\",\\n \\\"type\\\":\\\"textarea\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"true\\\"\\n }\\n]\\n\\n\",\n \"modelJson\":\"{\\\"searchJson\\\":\\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\\"isWebSubmit\\\":false,\\\"html\\\":\\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/mdiy/model/delete.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.delete()', '127.0.0.1', '批量删除自定义模型', NULL, NULL, '2022-02-27 11:20:50', NULL, 0);
  238. INSERT INTO `logger` VALUES (1497773743294767105, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"id\":[\"\"],\n \"modelType\":[\"cms\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqKeywords\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"关键字\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"input\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqMsg\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"消息\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqImage\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"图片\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n ', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/model/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.importJson()', '127.0.0.1', '导入自定义模型', NULL, NULL, '2022-02-27 11:21:02', NULL, 0);
  239. INSERT INTO `logger` VALUES (1497773775075008513, NULL, '{\n \"result\":false,\n \"msg\":\"自定义表名已存在!\",\n \"code\":500\n}', '{\n \"id\":[\"\"],\n \"modelType\":[\"cms\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqKeywords\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"关键字\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"input\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqMsg\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"消息\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqImage\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"图片\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n ', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/model/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.importJson()', '127.0.0.1', '导入自定义模型', NULL, NULL, '2022-02-27 11:21:10', NULL, 0);
  240. INSERT INTO `logger` VALUES (1497773801578815489, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"id\":[\"7\"],\n \"modelType\":[\"cms\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqKeywords\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"关键字\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"input\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqMsg\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"消息\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqImage\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"图片\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/model/updateJson.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.updateJson()', '127.0.0.1', '更新自定义模型', NULL, NULL, '2022-02-27 11:21:16', NULL, 0);
  241. INSERT INTO `logger` VALUES (1497773817001271297, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"del\":0,\n \"fieldMap\":{\n \"qqImage\":\"QQ_IMAGE\",\n \"qqKeywords\":\"QQ_KEYWORDS\",\n \"qqMsg\":\"QQ_MSG\"\n },\n \"formUrl\":\"d762137b9e4f9c9c0c53287fc07a3954\",\n \"id\":\"7\",\n \"modelCustomType\":\"model\",\n \"modelField\":\"[\\n {\\n \\\"model\\\":\\\"qqKeywords\\\",\\n \\\"key\\\":\\\"QQ_KEYWORDS\\\",\\n \\\"field\\\":\\\"QQ_KEYWORDS\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"关键字\\\",\\n \\\"type\\\":\\\"input\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"true\\\"\\n }\\n ,{\\n \\\"model\\\":\\\"qqMsg\\\",\\n \\\"key\\\":\\\"QQ_MSG\\\",\\n \\\"field\\\":\\\"QQ_MSG\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"消息\\\",\\n \\\"type\\\":\\\"textarea\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"true\\\"\\n }\\n ,{\\n \\\"model\\\":\\\"qqImage\\\",\\n \\\"key\\\":\\\"QQ_IMAGE\\\",\\n \\\"field\\\":\\\"QQ_IMAGE\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"图片\\\",\\n \\\"type\\\":\\\"textarea\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"true\\\"\\n }\\n]\\n\\n\",\n \"modelJson\":\"{\\\"searchJson\\\":\\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\\"isWebSubmit\\\":false,\\\"html\\\":\\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/mdiy/model/delete.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.delete()', '127.0.0.1', '批量删除自定义模型', NULL, NULL, '2022-02-27 11:21:20', NULL, 0);
  242. INSERT INTO `logger` VALUES (1497773852032098306, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"2\"\n }\n}', '{\n \"id\":[\"\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqKeywords\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"关键字\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"input\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqMsg\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"消息\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqImage\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"图片\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n </el-in', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/config/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ConfigAction.importJson()', '127.0.0.1', '导入', NULL, NULL, '2022-02-27 11:21:28', NULL, 0);
  243. INSERT INTO `logger` VALUES (1497773889965383681, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'QQ消息配置\' for key \'indx_model_name\'\n### The error may exist in net/mingsoft/mdiy/dao/IModelDao.java (best guess)\n### The error may involve net.mingsoft.mdiy.dao.IModelDao.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO mdiy_model ( model_name, model_table_name, not_del, model_type, model_custom_type, model_json, model_field, del ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'QQ消息配置\' for key \'indx_model_name\'\n; Duplicate entry \'QQ消息配置\' for key \'indx_model_name\'; nested exception is java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'QQ消息配置\' for key \'indx_model_name\'', 'null', '{\n \"id\":[\"\"],\n \"modelType\":[\"cms\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqKeywords\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"关键字\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"input\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqMsg\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"消息\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqImage\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"图片\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n ', '内网IP', 'msopen', 'manage', 'insert', 'error', '/ms/mdiy/model/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.importJson()', '127.0.0.1', '导入自定义模型', NULL, NULL, '2022-02-27 11:21:37', NULL, 0);
  244. INSERT INTO `logger` VALUES (1497774108094357505, '\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Table \'mdiy_model_robotqq\' already exists\n### The error may exist in net/mingsoft/base/dao/IBaseDao.xml\n### The error may involve net.mingsoft.base.dao.IBaseDao.excuteSql\n### The error occurred while executing a query\n### SQL: -- ROBOTQQ CREATE TABLE `MDIY_MODEL_ROBOTQQ` ( `id` BIGINT(11) UNSIGNED NOT NULL AUTO_INCREMENT, `QQ_KEYWORDS` VARCHAR(255) DEFAULT NULL COMMENT \'关键字\', `QQ_MSG` VARCHAR(255) DEFAULT NULL COMMENT \'消息\', `QQ_IMAGE` VARCHAR(255) DEFAULT NULL COMMENT \'图片\', `LINK_ID` BIGINT(20) DEFAULT NULL, `CREATE_DATE` DATETIME DEFAULT NULL COMMENT \'创建时间\', `CREATE_BY` VARCHAR(50) DEFAULT NULL COMMENT \'创建人\', `UPDATE_DATE` DATETIME DEFAULT NULL COMMENT \'修改时间\', `UPDATE_BY` VARCHAR(50) DEFAULT NULL COMMENT \'修改人\', `DEL` INT(1) DEFAULT 0 COMMENT \'删除标记\', PRIMARY KEY (`ID`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT=\'QQ消息配置\'\n### Cause: java.sql.SQLSyntaxErrorException: Table \'mdiy_model_robotqq\' already exists\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Table \'mdiy_model_robotqq\' already exists', 'null', '{\n \"id\":[\"\"],\n \"modelType\":[\"cms\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqKeywords\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"关键字\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"input\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqMsg\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"消息\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqImage\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"图片\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n ', '内网IP', 'msopen', 'manage', 'insert', 'error', '/ms/mdiy/model/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.importJson()', '127.0.0.1', '导入自定义模型', NULL, NULL, '2022-02-27 11:22:29', NULL, 0);
  245. INSERT INTO `logger` VALUES (1497774210804473857, '\n### Error updating database. Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'QQ消息配置\' for key \'indx_model_name\'\n### The error may exist in net/mingsoft/mdiy/dao/IModelDao.java (best guess)\n### The error may involve net.mingsoft.mdiy.dao.IModelDao.insert-Inline\n### The error occurred while setting parameters\n### SQL: INSERT INTO mdiy_model ( model_name, model_table_name, not_del, model_type, model_custom_type, model_json, model_field, del ) VALUES ( ?, ?, ?, ?, ?, ?, ?, ? )\n### Cause: java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'QQ消息配置\' for key \'indx_model_name\'\n; Duplicate entry \'QQ消息配置\' for key \'indx_model_name\'; nested exception is java.sql.SQLIntegrityConstraintViolationException: Duplicate entry \'QQ消息配置\' for key \'indx_model_name\'', 'null', '{\n \"id\":[\"\"],\n \"modelType\":[\"cms\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqKeywords\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"关键字\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"input\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqMsg\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"消息\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqImage\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"图片\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n ', '内网IP', 'msopen', 'manage', 'insert', 'error', '/ms/mdiy/model/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.importJson()', '127.0.0.1', '导入自定义模型', NULL, NULL, '2022-02-27 11:22:54', NULL, 0);
  246. INSERT INTO `logger` VALUES (1497775269622964225, '\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Table \'mdiy_model_robotqq\' already exists\n### The error may exist in net/mingsoft/base/dao/IBaseDao.xml\n### The error may involve net.mingsoft.base.dao.IBaseDao.excuteSql\n### The error occurred while executing a query\n### SQL: -- ROBOTQQ CREATE TABLE `MDIY_MODEL_ROBOTQQ` ( `id` BIGINT(11) UNSIGNED NOT NULL AUTO_INCREMENT, `QQ_KEYWORDS` VARCHAR(255) DEFAULT NULL COMMENT \'关键字\', `QQ_MSG` VARCHAR(255) DEFAULT NULL COMMENT \'消息\', `QQ_IMAGE` VARCHAR(255) DEFAULT NULL COMMENT \'图片\', `LINK_ID` BIGINT(20) DEFAULT NULL, `CREATE_DATE` DATETIME DEFAULT NULL COMMENT \'创建时间\', `CREATE_BY` VARCHAR(50) DEFAULT NULL COMMENT \'创建人\', `UPDATE_DATE` DATETIME DEFAULT NULL COMMENT \'修改时间\', `UPDATE_BY` VARCHAR(50) DEFAULT NULL COMMENT \'修改人\', `DEL` INT(1) DEFAULT 0 COMMENT \'删除标记\', PRIMARY KEY (`ID`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT=\'QQ消息配置\'\n### Cause: java.sql.SQLSyntaxErrorException: Table \'mdiy_model_robotqq\' already exists\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: Table \'mdiy_model_robotqq\' already exists', 'null', '{\n \"id\":[\"\"],\n \"modelType\":[\"cms\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqKeywords\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"关键字\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"input\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqMsg\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"消息\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqImage\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"图片\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n ', '内网IP', 'msopen', 'manage', 'insert', 'error', '/ms/mdiy/model/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.importJson()', '127.0.0.1', '导入自定义模型', NULL, NULL, '2022-02-27 11:27:06', NULL, 0);
  247. INSERT INTO `logger` VALUES (1497775379291430913, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"id\":[\"\"],\n \"modelType\":[\"cms\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqKeywords\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"关键字\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"input\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqMsg\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"消息\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqImage\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"图片\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n ', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/model/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.importJson()', '127.0.0.1', '导入自定义模型', NULL, NULL, '2022-02-27 11:27:32', NULL, 0);
  248. INSERT INTO `logger` VALUES (1497775412766171137, NULL, '{\n \"result\":false,\n \"msg\":\"自定义表名已存在!\",\n \"code\":500\n}', '{\n \"id\":[\"\"],\n \"modelType\":[\"cms\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqKeywords\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"关键字\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"input\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqMsg\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"消息\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqImage\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"图片\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n ', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/model/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.importJson()', '127.0.0.1', '导入自定义模型', NULL, NULL, '2022-02-27 11:27:40', NULL, 0);
  249. INSERT INTO `logger` VALUES (1497775439592939522, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"id\":[\"11\"],\n \"modelType\":[\"cms\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqKeywords\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"关键字\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"input\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqMsg\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"消息\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqImage\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"图片\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/model/updateJson.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.updateJson()', '127.0.0.1', '更新自定义模型', NULL, NULL, '2022-02-27 11:27:47', NULL, 0);
  250. INSERT INTO `logger` VALUES (1497775485268910082, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"dictLabel\":[\"1\"],\n \"dictType\":[\"自定义页面类型\"],\n \"dictValue\":[\"2\"],\n \"isChild\":[\"\"],\n \"dictEnable\":[\"true\"],\n \"dictSort\":[\"\"],\n \"dictRemarks\":[\"\"],\n \"id\":[\"\"]\n}', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/dict/save.do', 'POST', 'net.mingsoft.mdiy.action.DictAction.save()', '127.0.0.1', '保存字典接口', NULL, NULL, '2022-02-27 11:27:58', NULL, 0);
  251. INSERT INTO `logger` VALUES (1497775508375330818, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"createBy\":\"57\",\n \"createDate\":\"2022-02-27 11:27:58\",\n \"del\":0,\n \"dictEnable\":true,\n \"dictLabel\":\"1\",\n \"dictSort\":0,\n \"dictType\":\"自定义页面类型\",\n \"dictValue\":\"2\",\n \"id\":\"645\",\n \"notDel\":0,\n \"sqlWhereList\":[]\n }\n]', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/mdiy/dict/delete.do', 'POST', 'net.mingsoft.mdiy.action.DictAction.delete()', '127.0.0.1', '批量删除字典', NULL, NULL, '2022-02-27 11:28:03', NULL, 0);
  252. INSERT INTO `logger` VALUES (1497775544437956610, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"id\":[\"\"],\n \"modelJson\":[\"{\\\"searchJson\\\":\\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\\"field\\\":\\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqKeywords\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"关键字\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"input\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqMsg\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"消息\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqImage\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"图片\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\\"html\\\":\\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n </el-input>\\\\n ', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/form/importJson.do', 'POST', 'net.mingsoft.mdiy.action.FormAction.importJson()', '127.0.0.1', '导入', NULL, NULL, '2022-02-27 11:28:12', NULL, 0);
  253. INSERT INTO `logger` VALUES (1497776789487738881, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"dictLabel\":[\"a\"],\n \"dictType\":[\"自定义页面类型\"],\n \"dictValue\":[\"a\"],\n \"isChild\":[\"\"],\n \"dictEnable\":[\"true\"],\n \"dictSort\":[\"\"],\n \"dictRemarks\":[\"\"],\n \"id\":[\"\"]\n}', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/dict/save.do', 'POST', 'net.mingsoft.mdiy.action.DictAction.save()', '127.0.0.1', '保存字典接口', NULL, NULL, '2022-02-27 11:33:09', NULL, 0);
  254. INSERT INTO `logger` VALUES (1497776809968525313, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"createBy\":\"57\",\n \"createDate\":\"2022-02-27 11:33:09\",\n \"del\":0,\n \"dictEnable\":true,\n \"dictLabel\":\"a\",\n \"dictSort\":0,\n \"dictType\":\"自定义页面类型\",\n \"dictValue\":\"a\",\n \"id\":\"646\",\n \"notDel\":0,\n \"sqlWhereList\":[]\n }\n]', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/mdiy/dict/delete.do', 'POST', 'net.mingsoft.mdiy.action.DictAction.delete()', '127.0.0.1', '批量删除字典', NULL, NULL, '2022-02-27 11:33:13', NULL, 0);
  255. INSERT INTO `logger` VALUES (1497777053611450369, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"del\":0,\n \"fieldMap\":{\n \"qqImage\":\"QQ_IMAGE\",\n \"qqKeywords\":\"QQ_KEYWORDS\",\n \"qqMsg\":\"QQ_MSG\"\n },\n \"formUrl\":\"d639ed027d0fcf8e80ab62fabb4b8880\",\n \"id\":\"12\",\n \"modelCustomType\":\"post\",\n \"modelField\":\"[\\n {\\n \\\"model\\\":\\\"qqKeywords\\\",\\n \\\"key\\\":\\\"QQ_KEYWORDS\\\",\\n \\\"field\\\":\\\"QQ_KEYWORDS\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"关键字\\\",\\n \\\"type\\\":\\\"input\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"true\\\"\\n }\\n ,{\\n \\\"model\\\":\\\"qqMsg\\\",\\n \\\"key\\\":\\\"QQ_MSG\\\",\\n \\\"field\\\":\\\"QQ_MSG\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"消息\\\",\\n \\\"type\\\":\\\"textarea\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"true\\\"\\n }\\n ,{\\n \\\"model\\\":\\\"qqImage\\\",\\n \\\"key\\\":\\\"QQ_IMAGE\\\",\\n \\\"field\\\":\\\"QQ_IMAGE\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"图片\\\",\\n \\\"type\\\":\\\"textarea\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"true\\\"\\n }\\n]\\n\\n\",\n \"modelJson\":\"{\\\"searchJson\\\":\\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\\"isWebSubmit\\\":true,\\\"html\\\":\\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/mdiy/form/delete.do', 'POST', 'net.mingsoft.mdiy.action.FormAction.delete()', '127.0.0.1', '批量删除自定义模型列表接口', NULL, NULL, '2022-02-27 11:34:12', NULL, 0);
  256. INSERT INTO `logger` VALUES (1497777097999769602, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"del\":0,\n \"fieldMap\":{\n \"qqImage\":\"QQ_IMAGE\",\n \"qqKeywords\":\"QQ_KEYWORDS\",\n \"qqMsg\":\"QQ_MSG\"\n },\n \"formUrl\":\"ca547e833c5a4a5371cd5b57f9df3761\",\n \"id\":\"8\",\n \"modelCustomType\":\"config\",\n \"modelField\":\"[\\n {\\n \\\"model\\\":\\\"qqKeywords\\\",\\n \\\"key\\\":\\\"QQ_KEYWORDS\\\",\\n \\\"field\\\":\\\"QQ_KEYWORDS\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"关键字\\\",\\n \\\"type\\\":\\\"input\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"true\\\"\\n }\\n ,{\\n \\\"model\\\":\\\"qqMsg\\\",\\n \\\"key\\\":\\\"QQ_MSG\\\",\\n \\\"field\\\":\\\"QQ_MSG\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"消息\\\",\\n \\\"type\\\":\\\"textarea\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"true\\\"\\n }\\n ,{\\n \\\"model\\\":\\\"qqImage\\\",\\n \\\"key\\\":\\\"QQ_IMAGE\\\",\\n \\\"field\\\":\\\"QQ_IMAGE\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"图片\\\",\\n \\\"type\\\":\\\"textarea\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"true\\\"\\n }\\n]\\n\\n\",\n \"modelJson\":\"{\\\"searchJson\\\":\\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\\"isWebSubmit\\\":false,\\\"html\\\":\\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\"', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/mdiy/config/delete.do', 'POST', 'net.mingsoft.mdiy.action.ConfigAction.delete()', '127.0.0.1', '批量删除自定义模型列表接口', NULL, NULL, '2022-02-27 11:34:22', NULL, 0);
  257. INSERT INTO `logger` VALUES (1497777151191932930, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"3\"\n }\n}', '{\n \"id\":[\"\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqKeywords\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"关键字\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"input\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqMsg\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"消息\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqImage\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"图片\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n </el-in', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/config/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ConfigAction.importJson()', '127.0.0.1', '导入', NULL, NULL, '2022-02-27 11:34:35', NULL, 0);
  258. INSERT INTO `logger` VALUES (1497777177200812034, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"3\"\n }\n}', '{\n \"linkId\":[\"0\"],\n \"qqKeywords\":[\"a\"],\n \"qqMsg\":[\"c\"],\n \"qqImage\":[\"c\"],\n \"modelId\":[\"13\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/mdiy/configData/update.do', 'POST', 'net.mingsoft.mdiy.action.ConfigDataAction.update()', '127.0.0.1', '更新自定义配置', NULL, NULL, '2022-02-27 11:34:41', NULL, 0);
  259. INSERT INTO `logger` VALUES (1497777238836109313, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"3\"\n }\n}', '{\n \"qqImage\":[\"c\"],\n \"qqKeywords\":[\"a\"],\n \"linkId\":[\"0\"],\n \"modelId\":[\"13\"],\n \"qqMsg\":[\"b\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/mdiy/configData/update.do', 'POST', 'net.mingsoft.mdiy.action.ConfigDataAction.update()', '127.0.0.1', '更新自定义配置', NULL, NULL, '2022-02-27 11:34:56', NULL, 0);
  260. INSERT INTO `logger` VALUES (1497777279684435969, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"del\":0,\n \"fieldMap\":{\n \"qqImage\":\"QQ_IMAGE\",\n \"qqKeywords\":\"QQ_KEYWORDS\",\n \"qqMsg\":\"QQ_MSG\"\n },\n \"formUrl\":\"417cdc3b5c11886c7717fa9576c82467\",\n \"id\":\"13\",\n \"modelCustomType\":\"config\",\n \"modelField\":\"[\\n {\\n \\\"model\\\":\\\"qqKeywords\\\",\\n \\\"key\\\":\\\"QQ_KEYWORDS\\\",\\n \\\"field\\\":\\\"QQ_KEYWORDS\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"关键字\\\",\\n \\\"type\\\":\\\"input\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"true\\\"\\n }\\n ,{\\n \\\"model\\\":\\\"qqMsg\\\",\\n \\\"key\\\":\\\"QQ_MSG\\\",\\n \\\"field\\\":\\\"QQ_MSG\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"消息\\\",\\n \\\"type\\\":\\\"textarea\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"true\\\"\\n }\\n ,{\\n \\\"model\\\":\\\"qqImage\\\",\\n \\\"key\\\":\\\"QQ_IMAGE\\\",\\n \\\"field\\\":\\\"QQ_IMAGE\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"图片\\\",\\n \\\"type\\\":\\\"textarea\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"true\\\"\\n }\\n]\\n\\n\",\n \"modelJson\":\"{\\\"searchJson\\\":\\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\\"isWebSubmit\\\":false,\\\"html\\\":\\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/mdiy/config/delete.do', 'POST', 'net.mingsoft.mdiy.action.ConfigAction.delete()', '127.0.0.1', '批量删除自定义模型列表接口', NULL, NULL, '2022-02-27 11:35:05', NULL, 0);
  261. INSERT INTO `logger` VALUES (1497777347351142402, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"del\":0,\n \"fieldMap\":{\n \"qqImage\":\"QQ_IMAGE\",\n \"qqKeywords\":\"QQ_KEYWORDS\",\n \"qqMsg\":\"QQ_MSG\"\n },\n \"formUrl\":\"4cd6cb4462f17708c0f308b0c81589f5\",\n \"id\":\"11\",\n \"modelCustomType\":\"model\",\n \"modelField\":\"[\\n {\\n \\\"model\\\":\\\"qqKeywords\\\",\\n \\\"key\\\":\\\"QQ_KEYWORDS\\\",\\n \\\"field\\\":\\\"QQ_KEYWORDS\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"关键字\\\",\\n \\\"type\\\":\\\"input\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"true\\\"\\n }\\n ,{\\n \\\"model\\\":\\\"qqMsg\\\",\\n \\\"key\\\":\\\"QQ_MSG\\\",\\n \\\"field\\\":\\\"QQ_MSG\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"消息\\\",\\n \\\"type\\\":\\\"textarea\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"true\\\"\\n }\\n ,{\\n \\\"model\\\":\\\"qqImage\\\",\\n \\\"key\\\":\\\"QQ_IMAGE\\\",\\n \\\"field\\\":\\\"QQ_IMAGE\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"图片\\\",\\n \\\"type\\\":\\\"textarea\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"true\\\"\\n }\\n]\\n\\n\",\n \"modelJson\":\"{\\\"searchJson\\\":\\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\\"isWebSubmit\\\":false,\\\"html\\\":\\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\"', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/mdiy/model/delete.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.delete()', '127.0.0.1', '批量删除自定义模型', NULL, NULL, '2022-02-27 11:35:22', NULL, 0);
  262. INSERT INTO `logger` VALUES (1497777376832905218, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"id\":[\"\"],\n \"modelJson\":[\"{\\\"searchJson\\\":\\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\\"field\\\":\\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqKeywords\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_KEYWORDS\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"关键字\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"input\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqMsg\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_MSG\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"消息\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"qqImage\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"QQ_IMAGE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"图片\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"true\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\\"html\\\":\\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n </el-input>\\\\n ', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/form/importJson.do', 'POST', 'net.mingsoft.mdiy.action.FormAction.importJson()', '127.0.0.1', '导入', NULL, NULL, '2022-02-27 11:35:29', NULL, 0);
  263. INSERT INTO `logger` VALUES (1497777412455129090, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"linkId\":[\"0\"],\n \"qqKeywords\":[\"1\"],\n \"qqMsg\":[\"c\"],\n \"qqImage\":[\"c\"],\n \"modelId\":[\"14\"]\n}', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/formData/save.do', 'POST', 'net.mingsoft.mdiy.action.FormDataAction.save()', '127.0.0.1', '更新自定义业务数据', NULL, NULL, '2022-02-27 11:35:37', NULL, 0);
  264. INSERT INTO `logger` VALUES (1497777437587398657, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"linkId\":[\"0\"],\n \"qqKeywords\":[\"a\"],\n \"qqMsg\":[\"d\"],\n \"qqImage\":[\"c\"],\n \"modelId\":[\"14\"]\n}', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/formData/save.do', 'POST', 'net.mingsoft.mdiy.action.FormDataAction.save()', '127.0.0.1', '更新自定义业务数据', NULL, NULL, '2022-02-27 11:35:43', NULL, 0);
  265. INSERT INTO `logger` VALUES (1497777474761515009, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"qqImage\":[\"c2\"],\n \"qqKeywords\":[\"1\"],\n \"id\":[\"1\"],\n \"qqMsg\":[\"c1\"],\n \"modelId\":[\"14\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/mdiy/formData/update.do', 'POST', 'net.mingsoft.mdiy.action.FormDataAction.update()', '127.0.0.1', '更新自定义业务数据', NULL, NULL, '2022-02-27 11:35:52', NULL, 0);
  266. INSERT INTO `logger` VALUES (1497777519703482369, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"qqImage\":[\"c2\"],\n \"qqKeywords\":[\"1a\"],\n \"id\":[\"1\"],\n \"qqMsg\":[\"c1\"],\n \"modelId\":[\"14\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/mdiy/formData/update.do', 'POST', 'net.mingsoft.mdiy.action.FormDataAction.update()', '127.0.0.1', '更新自定义业务数据', NULL, NULL, '2022-02-27 11:36:03', NULL, 0);
  267. INSERT INTO `logger` VALUES (1497777538959532034, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"modelId\":[\"14\"],\n \"ids\":[\"1,2\"]\n}', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/mdiy/formData/delete.do', 'POST', 'net.mingsoft.mdiy.action.FormDataAction.delete()', '127.0.0.1', '批量删除自定义业务数据接口', NULL, NULL, '2022-02-27 11:36:07', NULL, 0);
  268. INSERT INTO `logger` VALUES (1497777602532597761, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', NULL, NULL, '2022-02-27 11:36:22', NULL, 0);
  269. INSERT INTO `logger` VALUES (1497777800445026306, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', NULL, NULL, '2022-02-27 11:37:10', NULL, 0);
  270. INSERT INTO `logger` VALUES (1497777821773062145, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"dateTime\":[\"2022-02-27\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/generateArticle.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateArticle()', '127.0.0.1', '生成文章', NULL, NULL, '2022-02-27 11:37:15', NULL, 0);
  271. INSERT INTO `logger` VALUES (1497777886218543106, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/genernateColumn.do', 'GET', 'net.mingsoft.cms.action.GeneraterAction.genernateColumn()', '127.0.0.1', '生成栏目', NULL, NULL, '2022-02-27 11:37:30', NULL, 0);
  272. INSERT INTO `logger` VALUES (1497777921811406849, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"dateTime\":[\"2022-02-25\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/generateArticle.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateArticle()', '127.0.0.1', '生成文章', NULL, NULL, '2022-02-27 11:37:39', NULL, 0);
  273. INSERT INTO `logger` VALUES (1497778066326151169, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"dateTime\":[\"2018-02-11\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/generateArticle.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateArticle()', '127.0.0.1', '生成文章', NULL, NULL, '2022-02-27 11:38:13', NULL, 0);
  274. INSERT INTO `logger` VALUES (1497778802665578497, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '192.168.0.99', '生成主页', NULL, NULL, '2022-02-27 11:41:09', NULL, 0);
  275. INSERT INTO `logger` VALUES (1497778826698940417, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"dateTime\":[\"2022-02-27\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/generateArticle.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateArticle()', '192.168.0.99', '生成文章', NULL, NULL, '2022-02-27 11:41:14', NULL, 0);
  276. INSERT INTO `logger` VALUES (1497778937009135618, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"dateTime\":[\"2022-02-27\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/generateArticle.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateArticle()', '192.168.0.99', '生成文章', NULL, NULL, '2022-02-27 11:41:41', NULL, 0);
  277. INSERT INTO `logger` VALUES (1497779107662782465, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/genernateColumn.do', 'GET', 'net.mingsoft.cms.action.GeneraterAction.genernateColumn()', '192.168.0.99', '生成栏目', NULL, NULL, '2022-02-27 11:42:21', NULL, 0);
  278. INSERT INTO `logger` VALUES (1497779134460190721, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"dateTime\":[\"2022-02-27\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/generateArticle.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateArticle()', '192.168.0.99', '生成文章', NULL, NULL, '2022-02-27 11:42:28', NULL, 0);
  279. INSERT INTO `logger` VALUES (1498105190578270210, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":\"204\"\n}', '{\n \"createBy\":[\"\"],\n \"createDate\":[\"\"],\n \"del\":[\"0\"],\n \"id\":[\"204\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"\"],\n \"updateDate\":[\"\"],\n \"order\":[\"\"],\n \"modelTitle\":[\"上传\"],\n \"modelId\":[\"87\"],\n \"modelUrl\":[\"template:upload\"],\n \"modelCode\":[\"12020002\"],\n \"isChild\":[\"\"],\n \"modelIcon\":[\"\"],\n \"modelSort\":[\"0\"],\n \"modelIsMenu\":[\"0\"],\n \"chick\":[\"0\"],\n \"depth\":[\"2\"],\n \"modelParentIds\":[\"84,87\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/model/update.do', 'POST', 'net.mingsoft.basic.action.ModelAction.update()', '192.168.0.233', '更新模块表信息模块表', NULL, NULL, '2022-02-28 09:18:06', NULL, 0);
  280. INSERT INTO `logger` VALUES (1498105235373436929, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":\"672\"\n}', '{\n \"createBy\":[\"\"],\n \"createDate\":[\"\"],\n \"del\":[\"0\"],\n \"id\":[\"672\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"\"],\n \"updateDate\":[\"\"],\n \"order\":[\"\"],\n \"modelTitle\":[\"删除\"],\n \"modelId\":[\"87\"],\n \"modelUrl\":[\"template:del\"],\n \"modelCode\":[\"5434345\"],\n \"isChild\":[\"\"],\n \"modelIcon\":[\"\"],\n \"modelSort\":[\"0\"],\n \"modelIsMenu\":[\"0\"],\n \"chick\":[\"0\"],\n \"depth\":[\"2\"],\n \"modelParentIds\":[\"84,87\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/model/update.do', 'POST', 'net.mingsoft.basic.action.ModelAction.update()', '192.168.0.233', '更新模块表信息模块表', NULL, NULL, '2022-02-28 09:18:16', NULL, 0);
  281. INSERT INTO `logger` VALUES (1498105254470103041, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":\"673\"\n}', '{\n \"createBy\":[\"\"],\n \"createDate\":[\"\"],\n \"del\":[\"0\"],\n \"id\":[\"673\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"\"],\n \"updateDate\":[\"\"],\n \"order\":[\"\"],\n \"modelTitle\":[\"更新\"],\n \"modelId\":[\"87\"],\n \"modelUrl\":[\"template:update1\"],\n \"modelCode\":[\"452435345\"],\n \"isChild\":[\"\"],\n \"modelIcon\":[\"\"],\n \"modelSort\":[\"0\"],\n \"modelIsMenu\":[\"0\"],\n \"chick\":[\"0\"],\n \"depth\":[\"2\"],\n \"modelParentIds\":[\"84,87\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/model/update.do', 'POST', 'net.mingsoft.basic.action.ModelAction.update()', '192.168.0.233', '更新模块表信息模块表', NULL, NULL, '2022-02-28 09:18:21', NULL, 0);
  282. INSERT INTO `logger` VALUES (1498105277169676289, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":\"673\"\n}', '{\n \"createBy\":[\"\"],\n \"createDate\":[\"\"],\n \"del\":[\"0\"],\n \"id\":[\"673\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"\"],\n \"updateDate\":[\"\"],\n \"order\":[\"\"],\n \"modelTitle\":[\"更新\"],\n \"modelId\":[\"87\"],\n \"modelUrl\":[\"template:update\"],\n \"modelCode\":[\"452435345\"],\n \"isChild\":[\"\"],\n \"modelIcon\":[\"\"],\n \"modelSort\":[\"0\"],\n \"modelIsMenu\":[\"0\"],\n \"chick\":[\"0\"],\n \"depth\":[\"2\"],\n \"modelParentIds\":[\"84,87\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/model/update.do', 'POST', 'net.mingsoft.basic.action.ModelAction.update()', '192.168.0.233', '更新模块表信息模块表', NULL, NULL, '2022-02-28 09:18:26', NULL, 0);
  283. INSERT INTO `logger` VALUES (1498105341350916097, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":\"204\"\n}', '{\n \"createBy\":[\"\"],\n \"createDate\":[\"\"],\n \"del\":[\"0\"],\n \"id\":[\"204\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"\"],\n \"updateDate\":[\"\"],\n \"order\":[\"\"],\n \"modelTitle\":[\"上传\"],\n \"modelId\":[\"87\"],\n \"modelUrl\":[\"template:upload\"],\n \"modelCode\":[\"12020002\"],\n \"isChild\":[\"\"],\n \"modelIcon\":[\"\"],\n \"modelSort\":[\"0\"],\n \"modelIsMenu\":[\"0\"],\n \"chick\":[\"0\"],\n \"depth\":[\"2\"],\n \"modelParentIds\":[\"84,87\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/model/update.do', 'POST', 'net.mingsoft.basic.action.ModelAction.update()', '192.168.0.233', '更新模块表信息模块表', NULL, NULL, '2022-02-28 09:18:41', NULL, 0);
  284. INSERT INTO `logger` VALUES (1498105369540833282, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":\"1700\"\n}', '{\n \"createBy\":[\"\"],\n \"createDate\":[\"\"],\n \"del\":[\"0\"],\n \"id\":[\"1700\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"\"],\n \"updateDate\":[\"\"],\n \"order\":[\"\"],\n \"modelTitle\":[\"自定义模块\"],\n \"modelUrl\":[\"\"],\n \"modelCode\":[\"16197622071887865\"],\n \"isChild\":[\"\"],\n \"modelIcon\":[\"icon-zhanqun\"],\n \"modelSort\":[\"0\"],\n \"modelIsMenu\":[\"1\"],\n \"chick\":[\"0\"],\n \"depth\":[\"0\"],\n \"modelParentIds\":[\"\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/model/update.do', 'POST', 'net.mingsoft.basic.action.ModelAction.update()', '192.168.0.233', '更新模块表信息模块表', NULL, NULL, '2022-02-28 09:18:48', NULL, 0);
  285. INSERT INTO `logger` VALUES (1498105453082980353, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":\"1700\"\n}', '{\n \"createBy\":[\"\"],\n \"createDate\":[\"\"],\n \"del\":[\"0\"],\n \"id\":[\"1700\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"\"],\n \"updateDate\":[\"\"],\n \"order\":[\"\"],\n \"modelTitle\":[\"自定义模块\"],\n \"modelUrl\":[\"\"],\n \"modelCode\":[\"16197622071887865\"],\n \"isChild\":[\"\"],\n \"modelIcon\":[\"icon-zhanqun\"],\n \"modelSort\":[\"0\"],\n \"modelIsMenu\":[\"1\"],\n \"chick\":[\"0\"],\n \"depth\":[\"0\"],\n \"modelParentIds\":[\"\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/model/update.do', 'POST', 'net.mingsoft.basic.action.ModelAction.update()', '192.168.0.233', '更新模块表信息模块表', NULL, NULL, '2022-02-28 09:19:08', NULL, 0);
  286. INSERT INTO `logger` VALUES (1498105885775769601, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":\"1700\"\n}', '{\n \"createBy\":[\"\"],\n \"createDate\":[\"\"],\n \"del\":[\"0\"],\n \"id\":[\"1700\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"\"],\n \"updateDate\":[\"\"],\n \"order\":[\"\"],\n \"modelTitle\":[\"自定义模块\"],\n \"modelUrl\":[\"\"],\n \"modelCode\":[\"16197622071887865\"],\n \"isChild\":[\"\"],\n \"modelIcon\":[\"icon-zhanqun\"],\n \"modelSort\":[\"0\"],\n \"modelIsMenu\":[\"1\"],\n \"chick\":[\"0\"],\n \"depth\":[\"0\"],\n \"modelParentIds\":[\"\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/model/update.do', 'POST', 'net.mingsoft.basic.action.ModelAction.update()', '192.168.0.233', '更新模块表信息模块表', NULL, NULL, '2022-02-28 09:20:51', NULL, 0);
  287. INSERT INTO `logger` VALUES (1498106194744979457, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":\"1700\"\n}', '{\n \"createBy\":[\"\"],\n \"createDate\":[\"\"],\n \"del\":[\"0\"],\n \"id\":[\"1700\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"\"],\n \"updateDate\":[\"\"],\n \"order\":[\"\"],\n \"modelTitle\":[\"自定义模块\"],\n \"modelUrl\":[\"\"],\n \"modelCode\":[\"16197622071887865\"],\n \"isChild\":[\"\"],\n \"modelIcon\":[\"icon-zhanqun\"],\n \"modelSort\":[\"0\"],\n \"modelIsMenu\":[\"1\"],\n \"chick\":[\"0\"],\n \"depth\":[\"0\"],\n \"modelParentIds\":[\"\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/model/update.do', 'POST', 'net.mingsoft.basic.action.ModelAction.update()', '192.168.0.233', '更新模块表信息模块表', NULL, NULL, '2022-02-28 09:22:05', NULL, 0);
  288. INSERT INTO `logger` VALUES (1498106228760784898, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":\"1700\"\n}', '{\n \"createBy\":[\"\"],\n \"createDate\":[\"\"],\n \"del\":[\"0\"],\n \"id\":[\"1700\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"\"],\n \"updateDate\":[\"\"],\n \"order\":[\"\"],\n \"modelTitle\":[\"自定义模块\"],\n \"modelUrl\":[\"\"],\n \"modelCode\":[\"16197622071887865\"],\n \"isChild\":[\"\"],\n \"modelIcon\":[\"icon-zhanqun\"],\n \"modelSort\":[\"0\"],\n \"modelIsMenu\":[\"1\"],\n \"chick\":[\"0\"],\n \"depth\":[\"0\"],\n \"modelParentIds\":[\"\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/model/update.do', 'POST', 'net.mingsoft.basic.action.ModelAction.update()', '192.168.0.233', '更新模块表信息模块表', NULL, NULL, '2022-02-28 09:22:13', NULL, 0);
  289. INSERT INTO `logger` VALUES (1498108245478617090, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":\"1700\"\n}', '{\n \"createBy\":[\"\"],\n \"createDate\":[\"\"],\n \"del\":[\"0\"],\n \"id\":[\"1700\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"\"],\n \"updateDate\":[\"\"],\n \"order\":[\"\"],\n \"modelTitle\":[\"自定义模块\"],\n \"modelUrl\":[\"\"],\n \"modelCode\":[\"16197622071887865\"],\n \"isChild\":[\"\"],\n \"modelIcon\":[\"icon-zhanqun\"],\n \"modelSort\":[\"0\"],\n \"modelIsMenu\":[\"1\"],\n \"chick\":[\"0\"],\n \"depth\":[\"0\"],\n \"modelParentIds\":[\"\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/model/update.do', 'POST', 'net.mingsoft.basic.action.ModelAction.update()', '192.168.0.233', '更新模块表信息模块表', NULL, NULL, '2022-02-28 09:30:14', NULL, 0);
  290. INSERT INTO `logger` VALUES (1498110832298876930, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":\"1700\"\n}', '{\n \"createBy\":[\"\"],\n \"createDate\":[\"\"],\n \"del\":[\"0\"],\n \"id\":[\"1700\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"\"],\n \"updateDate\":[\"\"],\n \"order\":[\"\"],\n \"modelTitle\":[\"自定义模块\"],\n \"modelUrl\":[\"\"],\n \"modelCode\":[\"16197622071887865\"],\n \"isChild\":[\"\"],\n \"modelIcon\":[\"icon-zhanqun\"],\n \"modelSort\":[\"0\"],\n \"modelIsMenu\":[\"1\"],\n \"chick\":[\"0\"],\n \"depth\":[\"0\"],\n \"modelParentIds\":[\"\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/model/update.do', 'POST', 'net.mingsoft.basic.action.ModelAction.update()', '192.168.0.233', '更新模块表信息模块表', NULL, NULL, '2022-02-28 09:40:31', NULL, 0);
  291. INSERT INTO `logger` VALUES (1498110926603608066, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":\"1700\"\n}', '{\n \"createBy\":[\"\"],\n \"createDate\":[\"\"],\n \"del\":[\"0\"],\n \"id\":[\"1700\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"\"],\n \"updateDate\":[\"\"],\n \"order\":[\"\"],\n \"modelTitle\":[\"自定义模块\"],\n \"modelUrl\":[\"\"],\n \"modelCode\":[\"16197622071887865\"],\n \"isChild\":[\"\"],\n \"modelIcon\":[\"icon-zhanqun\"],\n \"modelSort\":[\"0\"],\n \"modelIsMenu\":[\"1\"],\n \"chick\":[\"0\"],\n \"depth\":[\"0\"],\n \"modelParentIds\":[\"\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/model/update.do', 'POST', 'net.mingsoft.basic.action.ModelAction.update()', '192.168.0.233', '更新模块表信息模块表', NULL, NULL, '2022-02-28 09:40:53', NULL, 0);
  292. INSERT INTO `logger` VALUES (1498111289264103426, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"ids\":[\"1737\"]\n}', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/model/delete.do', 'POST', 'net.mingsoft.basic.action.ModelAction.delete()', '192.168.0.233', '批量删除模块表', NULL, NULL, '2022-02-28 09:42:20', NULL, 0);
  293. INSERT INTO `logger` VALUES (1498111335695048705, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"ids\":[\"1735\"]\n}', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/model/delete.do', 'POST', 'net.mingsoft.basic.action.ModelAction.delete()', '192.168.0.233', '批量删除模块表', NULL, NULL, '2022-02-28 09:42:31', NULL, 0);
  294. INSERT INTO `logger` VALUES (1498111447049625602, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"ids\":[\"1734\"]\n}', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/model/delete.do', 'POST', 'net.mingsoft.basic.action.ModelAction.delete()', '192.168.0.233', '批量删除模块表', NULL, NULL, '2022-02-28 09:42:57', NULL, 0);
  295. INSERT INTO `logger` VALUES (1498111540398055426, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":\"1740\"\n}', '{\n \"createBy\":[\"\"],\n \"createDate\":[\"\"],\n \"del\":[\"0\"],\n \"id\":[\"1740\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"\"],\n \"updateDate\":[\"\"],\n \"order\":[\"\"],\n \"modelTitle\":[\"测试管理\"],\n \"modelUrl\":[\"\"],\n \"modelCode\":[\"01000000\"],\n \"isChild\":[\"\"],\n \"modelIcon\":[\"icon-quanxianguanli\"],\n \"modelSort\":[\"5\"],\n \"modelIsMenu\":[\"1\"],\n \"chick\":[\"0\"],\n \"depth\":[\"0\"],\n \"modelParentIds\":[\"\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/model/update.do', 'POST', 'net.mingsoft.basic.action.ModelAction.update()', '192.168.0.233', '更新模块表信息模块表', NULL, NULL, '2022-02-28 09:43:19', NULL, 0);
  296. INSERT INTO `logger` VALUES (1498111565089923073, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"ids\":[\"1746\"]\n}', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/model/delete.do', 'POST', 'net.mingsoft.basic.action.ModelAction.delete()', '192.168.0.233', '批量删除模块表', NULL, NULL, '2022-02-28 09:43:25', NULL, 0);
  297. INSERT INTO `logger` VALUES (1498111668269801474, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"ids\":[\"1741\"]\n}', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/model/delete.do', 'POST', 'net.mingsoft.basic.action.ModelAction.delete()', '192.168.0.233', '批量删除模块表', NULL, NULL, '2022-02-28 09:43:50', NULL, 0);
  298. INSERT INTO `logger` VALUES (1498111784749817857, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"ids\":[\"1740\"]\n}', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/model/delete.do', 'POST', 'net.mingsoft.basic.action.ModelAction.delete()', '192.168.0.233', '批量删除模块表', NULL, NULL, '2022-02-28 09:44:18', NULL, 0);
  299. INSERT INTO `logger` VALUES (1498111876256948226, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"ids\":[\"1755\"]\n}', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/model/delete.do', 'POST', 'net.mingsoft.basic.action.ModelAction.delete()', '192.168.0.233', '批量删除模块表', NULL, NULL, '2022-02-28 09:44:40', NULL, 0);
  300. INSERT INTO `logger` VALUES (1498112419931021313, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"1498112419771637762\"\n }\n}', '{\n \"contentTitle\":[\"测试\"],\n \"categoryId\":[\"1329357285870346241\"],\n \"contentType\":[\"\"],\n \"contentDisplay\":[\"0\"],\n \"contentAuthor\":[\"\"],\n \"contentSource\":[\"\"],\n \"contentSort\":[\"0\"],\n \"contentImg\":[\"[]\"],\n \"contentDescription\":[\"\"],\n \"contentKeyword\":[\"\"],\n \"contentDetails\":[\"<p><img src=\\\"/upload/1/cms/content/editor/1646012801102.jpg\\\" title=\\\"1646012801102.jpg\\\" alt=\\\"1633935043460.jpg\\\"/></p>\"],\n \"contentDatetime\":[\"2022-02-28 09:46:30\"],\n \"id\":[\"\"]\n}', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/cms/content/save.do', 'POST', 'net.mingsoft.cms.action.ContentAction.save()', '192.168.0.233', '保存文章', NULL, NULL, '2022-02-28 09:46:49', NULL, 0);
  301. INSERT INTO `logger` VALUES (1498114440188846081, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"1498112419771637762\"\n }\n}', '{\n \"createBy\":[\"57\"],\n \"createDate\":[\"2022-02-28 09:46:49\"],\n \"del\":[\"0\"],\n \"id\":[\"1498112419771637762\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"\"],\n \"updateDate\":[\"2022-02-28 09:46:49\"],\n \"order\":[\"\"],\n \"contentTitle\":[\"测试\"],\n \"categoryId\":[\"1329357285870346241\"],\n \"contentType\":[\"\"],\n \"contentDisplay\":[\"0\"],\n \"contentAuthor\":[\"\"],\n \"contentSource\":[\"\"],\n \"contentDatetime\":[\"2022-02-28 09:46:30\"],\n \"contentSort\":[\"0\"],\n \"contentImg\":[\"[]\"],\n \"contentDescription\":[\"\"],\n \"contentKeyword\":[\"\"],\n \"contentDetails\":[\"<p><img src=\\\"/upload/1/cms/content/editor/1646012801102.jpg\\\" title=\\\"1646012801102.jpg\\\" alt=\\\"1633935043460.jpg\\\"/></p>\"],\n \"contentUrl\":[\"\"],\n \"contentHit\":[\"0\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/content/update.do', 'POST', 'net.mingsoft.cms.action.ContentAction.update()', '192.168.0.233', '更新文章', NULL, NULL, '2022-02-28 09:54:51', NULL, 0);
  302. INSERT INTO `logger` VALUES (1498114657189552130, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"del\":0,\n \"fieldMap\":{\n \"qqImage\":\"QQ_IMAGE\",\n \"qqKeywords\":\"QQ_KEYWORDS\",\n \"qqMsg\":\"QQ_MSG\"\n },\n \"formUrl\":\"ce30d5bbdedff366e3098cc570eb3b24\",\n \"id\":\"14\",\n \"modelCustomType\":\"post\",\n \"modelField\":\"[\\n {\\n \\\"model\\\":\\\"qqKeywords\\\",\\n \\\"key\\\":\\\"QQ_KEYWORDS\\\",\\n \\\"field\\\":\\\"QQ_KEYWORDS\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"关键字\\\",\\n \\\"type\\\":\\\"input\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"true\\\"\\n }\\n ,{\\n \\\"model\\\":\\\"qqMsg\\\",\\n \\\"key\\\":\\\"QQ_MSG\\\",\\n \\\"field\\\":\\\"QQ_MSG\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"消息\\\",\\n \\\"type\\\":\\\"textarea\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"true\\\"\\n }\\n ,{\\n \\\"model\\\":\\\"qqImage\\\",\\n \\\"key\\\":\\\"QQ_IMAGE\\\",\\n \\\"field\\\":\\\"QQ_IMAGE\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"图片\\\",\\n \\\"type\\\":\\\"textarea\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"true\\\"\\n }\\n]\\n\\n\",\n \"modelJson\":\"{\\\"searchJson\\\":\\\"[\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n //关键字\\\\n {\'action\':\'and\', \'field\': \'QQ_KEYWORDS\', \'el\': \'eq\', \'model\': \'qqKeywords\', \'name\': \'关键字\', \'type\': \'input\'},\\\\n // 消息\\\\n {\'action\':\'and\', \'field\': \'QQ_MSG\', \'el\': \'eq\', \'model\': \'qqMsg\', \'name\': \'消息\', \'type\': \'textarea\'},\\\\n // 图片\\\\n {\'action\':\'and\', \'field\': \'QQ_IMAGE\', \'el\': \'eq\', \'model\': \'qqImage\', \'name\': \'图片\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\\"isWebSubmit\\\":false,\\\"html\\\":\\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--关键字-->\\\\n\\\\t <el-form-item label=\\\\\\\"关键字\\\\\\\" prop=\\\\\\\"qqKeywords\\\\\\\">\\\\n\\\\t <el-input\\\\n v-model=\\\\\\\"form.qqKeywords\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n :clearable=\\\\\\\"true\\\\\\\"\\\\n placeholder=\\\\\\\"请输入关键字\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item> \\\\n <!--消息-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"消息\\\\\\\" prop=\\\\\\\"qqMsg\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqMsg\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入消息\\\\\\\">\\\\n </el-input>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n <!--图片-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"图片\\\\\\\" prop=\\\\\\\"qqImage\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.qqImage\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入图片\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/mdiy/form/delete.do', 'POST', 'net.mingsoft.mdiy.action.FormAction.delete()', '192.168.0.233', '批量删除自定义模型列表接口', NULL, NULL, '2022-02-28 09:55:43', NULL, 0);
  303. INSERT INTO `logger` VALUES (1498115367339745281, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"modelType\":[\"cms\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n // 启用站群\\\\n {\'action\':\'and\', \'field\': \'SITE_ENABLE\', \'el\': \'eq\', \'model\': \'siteEnable\', \'name\': \'启用站群\', \'type\': \'switch\'},\\\\n // 站群涉及表\\\\n {\'action\':\'and\', \'field\': \'SITE_TABES\', \'el\': \'eq\', \'model\': \'siteTabes\', \'name\': \'站群涉及表\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteEnable\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"Boolean\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"启用站群\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"switch\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"11\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteTabes\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"站群涉及表\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--启用站群-->\\\\n \\\\n <el-form-item label=\\\\\\\"启用站群\\\\\\\" prop=\\\\\\\"siteEnable\\\\\\\">\\\\n <el-switch v-model=\\\\\\\"form.siteEnable\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\">\\\\n </el-switch>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n建议系统初始化时候决定是否启用<br/>\\\\n注:修改后需要重启系统生效 </div>\\\\n </el-form-item>\\\\n \\\\n <!--站群涉及表-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"站群涉及表\\\\\\\" prop=\\\\\\\"siteTabes\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.siteTabes\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入站群涉及表\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n多个表逗号,分割,表中必须存在APP_ID字段<br/>\\\\n注:表有改动需要重新在站点管理初始化APPID </div>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n </el-form>\\\\n</template>\\\\n\\\",\\n \\\"title\\\": \\\"站群配置\\\",\\n \\\"script\\\": \\\"\\\\n\\\\nvar custom_model = Vue.component(\\\\\\\"custom-model\\\\\\\",{\\\\nel: \'#custom-model\',\\\\ndata:function() {\\\\nreturn {\\\\n\\\\nmodelId:0,\\\\nmodelName: \\\\\\\"站群配置\\\\\\\",\\\\n//表单数据\\\\nform: {\\\\nlinkId:0,\\\\n // 启用站群\\\\n siteEnable:false,\\\\n // 站群涉及表\\\\n siteTabes:\'cms_content,cms_category\',\\\\n},\\\\n\\\\nrules:{\\\\n},\\\\n}\\\\n},\\\\nwatch:{\\\\n \\\\n //启用站群 \\\\n \\\\\\\"form.siteEnable\\\\\\\":function(nev,old){\\\\n if(typeof(nev)==\'string\') {\\\\n this.form.siteEnable = (nev==\'true\');\\\\n } \\\\n },\\\\n},\\\\ncomputed:{\\\\n},\\\\nmethods: {\\\\nvalidate:function(){\\\\nvar b = false\\\\nthis.$refs.form.validate(function(valid){\\\\nb = valid;\\\\n});\\\\nreturn b;\\\\n},\\\\nsave:function(callback) {\\\\nvar that = this;\\\\nvar url = this.formURL.save.url;\\\\nif (that.form.id > 0) {\\\\nurl = this.formURL.update.url;\\\\n}\\\\nthis.$refs.form.validate(function(valid) {\\\\nif (valid) {\\\\nvar form = JSON.parse(JSON.stringify(that.form));\\\\nform.modelId = that.modelId;\\\\nms.http.post(url, form).then(function (res) {\\\\nif(callback) {\\\\ncallback(res);\\\\n}\\\\n});\\\\n}else{\\\\ncallback({result:false,msg:\'请检查表单输入项\'});\\\\n}\\\\n})\\\\n},\\\\n//获取当前站群配置\\\\nget:function(id) {\\\\nvar that = this;\\\\nms.http.get(this.formURL.get.url, Object.assign({\\\\\\\"modelId\\\\\\\":that.modelId},this.formURL.get.params)).then(function (res) {\\\\nif(res.result&&res.data){\\\\nthat.form = res.data;\\\\n}\\\\n}).catch(function (err) {\\\\nconsole.log(err);\\\\n});\\\\n},\\\\n\\\\n},\\\\ncreated:function() {\\\\n//渲染create\\\\n\\\\nt', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/model/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.importJson()', '192.168.0.233', '导入自定义模型', NULL, NULL, '2022-02-28 09:58:32', NULL, 0);
  304. INSERT INTO `logger` VALUES (1498115426420711425, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"1\"\n }\n}', '{\n \"id\":[\"\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n // 启用站群\\\\n {\'action\':\'and\', \'field\': \'SITE_ENABLE\', \'el\': \'eq\', \'model\': \'siteEnable\', \'name\': \'启用站群\', \'type\': \'switch\'},\\\\n // 站群涉及表\\\\n {\'action\':\'and\', \'field\': \'SITE_TABES\', \'el\': \'eq\', \'model\': \'siteTabes\', \'name\': \'站群涉及表\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteEnable\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"Boolean\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"启用站群\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"switch\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"11\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteTabes\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"站群涉及表\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--启用站群-->\\\\n \\\\n <el-form-item label=\\\\\\\"启用站群\\\\\\\" prop=\\\\\\\"siteEnable\\\\\\\">\\\\n <el-switch v-model=\\\\\\\"form.siteEnable\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\">\\\\n </el-switch>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n建议系统初始化时候决定是否启用<br/>\\\\n注:修改后需要重启系统生效 </div>\\\\n </el-form-item>\\\\n \\\\n <!--站群涉及表-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"站群涉及表\\\\\\\" prop=\\\\\\\"siteTabes\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.siteTabes\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入站群涉及表\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n多个表逗号,分割,表中必须存在APP_ID字段<br/>\\\\n注:表有改动需要重新在站点管理初始化APPID </div>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n </el-form>\\\\n</template>\\\\n\\\",\\n \\\"title\\\": \\\"站群配置\\\",\\n \\\"script\\\": \\\"\\\\n\\\\nvar custom_model = Vue.component(\\\\\\\"custom-model\\\\\\\",{\\\\nel: \'#custom-model\',\\\\ndata:function() {\\\\nreturn {\\\\n\\\\nmodelId:0,\\\\nmodelName: \\\\\\\"站群配置\\\\\\\",\\\\n//表单数据\\\\nform: {\\\\nlinkId:0,\\\\n // 启用站群\\\\n siteEnable:false,\\\\n // 站群涉及表\\\\n siteTabes:\'cms_content,cms_category\',\\\\n},\\\\n\\\\nrules:{\\\\n},\\\\n}\\\\n},\\\\nwatch:{\\\\n \\\\n //启用站群 \\\\n \\\\\\\"form.siteEnable\\\\\\\":function(nev,old){\\\\n if(typeof(nev)==\'string\') {\\\\n this.form.siteEnable = (nev==\'true\');\\\\n } \\\\n },\\\\n},\\\\ncomputed:{\\\\n},\\\\nmethods: {\\\\nvalidate:function(){\\\\nvar b = false\\\\nthis.$refs.form.validate(function(valid){\\\\nb = valid;\\\\n});\\\\nreturn b;\\\\n},\\\\nsave:function(callback) {\\\\nvar that = this;\\\\nvar url = this.formURL.save.url;\\\\nif (that.form.id > 0) {\\\\nurl = this.formURL.update.url;\\\\n}\\\\nthis.$refs.form.validate(function(valid) {\\\\nif (valid) {\\\\nvar form = JSON.parse(JSON.stringify(that.form));\\\\nform.modelId = that.modelId;\\\\nms.http.post(url, form).then(function (res) {\\\\nif(callback) {\\\\ncallback(res);\\\\n}\\\\n});\\\\n}else{\\\\ncallback({result:false,msg:\'请检查表单输入项\'});\\\\n}\\\\n})\\\\n},\\\\n//获取当前站群配置\\\\nget:function(id) {\\\\nvar that = this;\\\\nms.http.get(this.formURL.get.url, Object.assign({\\\\\\\"modelId\\\\\\\":that.modelId},this.formURL.get.params)).then(function (res) {\\\\nif(res.result&&res.data){\\\\nthat.form = res.data;\\\\n}\\\\n}).catch(function (err) {\\\\nconsole.log(err);\\\\n});\\\\n},\\\\n\\\\n},\\\\ncreated:function() {\\\\n//渲染create\\\\n\\\\nthis.get(th', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/config/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ConfigAction.importJson()', '192.168.0.233', '导入', NULL, NULL, '2022-02-28 09:58:46', NULL, 0);
  305. INSERT INTO `logger` VALUES (1498115498428522497, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"del\":0,\n \"fieldMap\":{\n \"siteEnable\":\"SITE_ENABLE\",\n \"siteTabes\":\"SITE_TABES\"\n },\n \"formUrl\":\"1fe96986a8657ceb54308b98b01216c7\",\n \"id\":\"15\",\n \"modelCustomType\":\"model\",\n \"modelField\":\"[\\n {\\n \\\"model\\\":\\\"siteEnable\\\",\\n \\\"key\\\":\\\"SITE_ENABLE\\\",\\n \\\"field\\\":\\\"SITE_ENABLE\\\",\\n \\\"javaType\\\":\\\"Boolean\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"启用站群\\\",\\n \\\"type\\\":\\\"switch\\\",\\n \\\"length\\\":\\\"11\\\",\\n \\\"isShow\\\":\\\"false\\\"\\n }\\n ,{\\n \\\"model\\\":\\\"siteTabes\\\",\\n \\\"key\\\":\\\"SITE_TABES\\\",\\n \\\"field\\\":\\\"SITE_TABES\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"站群涉及表\\\",\\n \\\"type\\\":\\\"textarea\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"false\\\"\\n }\\n]\\n\\n\",\n \"modelJson\":\"{\\\"searchJson\\\":\\\"[\\\\n // 启用站群\\\\n {\'action\':\'and\', \'field\': \'SITE_ENABLE\', \'el\': \'eq\', \'model\': \'siteEnable\', \'name\': \'启用站群\', \'type\': \'switch\'},\\\\n // 站群涉及表\\\\n {\'action\':\'and\', \'field\': \'SITE_TABES\', \'el\': \'eq\', \'model\': \'siteTabes\', \'name\': \'站群涉及表\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\\"isWebSubmit\\\":false,\\\"html\\\":\\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--启用站群-->\\\\n \\\\n <el-form-item label=\\\\\\\"启用站群\\\\\\\" prop=\\\\\\\"siteEnable\\\\\\\">\\\\n <el-switch v-model=\\\\\\\"form.siteEnable\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\">\\\\n </el-switch>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n建议系统初始化时候决定是否启用<br/>\\\\n注:修改后需要重启系统生效 </div>\\\\n </el-form-item>\\\\n \\\\n <!--站群涉及表-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"站群涉及表\\\\\\\" prop=\\\\\\\"siteTabes\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.siteTabes\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入站群涉及表\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n多个表逗号,分割,表中必须存在APP_ID字段<br/>\\\\n注:表有改动需要重新在站点管理初始化APPID </div>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n </el-form>\\\\n</template>\\\\n\\\",\\\"script\\\":\\\"\\\\n\\\\nvar custom_model = Vue.component(\\\\\\\"custom-model\\\\\\\",{\\\\nel: \'#custom-model\',\\\\ndata:function() {\\\\nreturn {\\\\n\\\\nmodelId:0,\\\\nmodelName: \\\\\\\"站群配置\\\\\\\",\\\\n//表单数据\\\\nform: {\\\\nlinkId:0,\\\\n // 启用站群\\\\n siteEnable:false,\\\\n // 站群涉及表\\\\n siteTabes:\'cms_content,cms_category\',\\\\n},\\\\n\\\\nrules:{\\\\n},\\\\n}\\\\n},\\\\nwatch:{\\\\n \\\\n //启用站群 \\\\n \\\\\\\"form.siteEnable\\\\\\\":function(nev,old){\\\\n if(typeof(nev)==\'string\') {\\\\n this.form.siteEnable = (nev==\'true\');\\\\n } \\\\n },\\\\n},\\\\ncomputed:{\\\\n},\\\\nmethods: {\\\\nvalidate:function(){\\\\nvar b = false\\\\nthis.$refs.form.validate(function(valid){\\\\nb = valid;\\\\n});\\\\nreturn b;\\\\n},\\\\nsave:function(callback) {\\\\nvar that = this;\\\\nvar url = this.formURL.save.url;\\\\nif (that.form.id > 0) {\\\\nurl = this.formURL.update.url;\\\\n}\\\\nthis.$refs.form.validate(function(valid) {\\\\nif (valid) {\\\\nvar form = JSON.parse(JSON.stringify(that.form));\\\\nform.modelId = that.modelId;\\\\nms.http.post(url, form).then(function (res) {\\\\nif(callback) {\\\\ncallback(res);\\\\n}\\\\n});\\\\n}else{\\\\ncallback({result:false,msg:\'请检查表单输入项\'});\\\\n}\\\\n})\\\\n},\\\\n//获取当前站群配置\\\\nget:function(id) {\\\\nvar that = this;\\\\nms.http.get(this.formURL.get.url, Object.assign({\\\\\\\"modelId\\\\\\\":that.modelId},this.formURL.get.params)).then(function (res) {\\\\nif(res.result&&res.data){\\\\nthat.form = res.data;\\\\n}\\\\n}).catch(function (err) {\\\\nconsole.log(err);\\\\n});\\\\n},\\\\n\\\\n},\\\\ncreated:function() {\\\\n//渲染create\\\\n\\\\nthis.get(this.form.linkId);', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/mdiy/model/delete.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.delete()', '192.168.0.233', '批量删除自定义模型', NULL, NULL, '2022-02-28 09:59:03', NULL, 0);
  306. INSERT INTO `logger` VALUES (1498115566749540354, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"del\":0,\n \"fieldMap\":{\n \"siteEnable\":\"SITE_ENABLE\",\n \"siteTabes\":\"SITE_TABES\"\n },\n \"formUrl\":\"db862df2c176433087e29232b6f15665\",\n \"id\":\"16\",\n \"modelCustomType\":\"config\",\n \"modelField\":\"[\\n {\\n \\\"model\\\":\\\"siteEnable\\\",\\n \\\"key\\\":\\\"SITE_ENABLE\\\",\\n \\\"field\\\":\\\"SITE_ENABLE\\\",\\n \\\"javaType\\\":\\\"Boolean\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"启用站群\\\",\\n \\\"type\\\":\\\"switch\\\",\\n \\\"length\\\":\\\"11\\\",\\n \\\"isShow\\\":\\\"false\\\"\\n }\\n ,{\\n \\\"model\\\":\\\"siteTabes\\\",\\n \\\"key\\\":\\\"SITE_TABES\\\",\\n \\\"field\\\":\\\"SITE_TABES\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"站群涉及表\\\",\\n \\\"type\\\":\\\"textarea\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"false\\\"\\n }\\n]\\n\\n\",\n \"modelJson\":\"{\\\"searchJson\\\":\\\"[\\\\n // 启用站群\\\\n {\'action\':\'and\', \'field\': \'SITE_ENABLE\', \'el\': \'eq\', \'model\': \'siteEnable\', \'name\': \'启用站群\', \'type\': \'switch\'},\\\\n // 站群涉及表\\\\n {\'action\':\'and\', \'field\': \'SITE_TABES\', \'el\': \'eq\', \'model\': \'siteTabes\', \'name\': \'站群涉及表\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\\"isWebSubmit\\\":false,\\\"html\\\":\\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--启用站群-->\\\\n \\\\n <el-form-item label=\\\\\\\"启用站群\\\\\\\" prop=\\\\\\\"siteEnable\\\\\\\">\\\\n <el-switch v-model=\\\\\\\"form.siteEnable\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\">\\\\n </el-switch>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n建议系统初始化时候决定是否启用<br/>\\\\n注:修改后需要重启系统生效 </div>\\\\n </el-form-item>\\\\n \\\\n <!--站群涉及表-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"站群涉及表\\\\\\\" prop=\\\\\\\"siteTabes\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.siteTabes\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入站群涉及表\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n多个表逗号,分割,表中必须存在APP_ID字段<br/>\\\\n注:表有改动需要重新在站点管理初始化APPID </div>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n </el-form>\\\\n</template>\\\\n\\\",\\\"script\\\":\\\"\\\\n\\\\nvar custom_model = Vue.component(\\\\\\\"custom-model\\\\\\\",{\\\\nel: \'#custom-model\',\\\\ndata:function() {\\\\nreturn {\\\\n\\\\nmodelId:0,\\\\nmodelName: \\\\\\\"站群配置\\\\\\\",\\\\n//表单数据\\\\nform: {\\\\nlinkId:0,\\\\n // 启用站群\\\\n siteEnable:false,\\\\n // 站群涉及表\\\\n siteTabes:\'cms_content,cms_category\',\\\\n},\\\\n\\\\nrules:{\\\\n},\\\\n}\\\\n},\\\\nwatch:{\\\\n \\\\n //启用站群 \\\\n \\\\\\\"form.siteEnable\\\\\\\":function(nev,old){\\\\n if(typeof(nev)==\'string\') {\\\\n this.form.siteEnable = (nev==\'true\');\\\\n } \\\\n },\\\\n},\\\\ncomputed:{\\\\n},\\\\nmethods: {\\\\nvalidate:function(){\\\\nvar b = false\\\\nthis.$refs.form.validate(function(valid){\\\\nb = valid;\\\\n});\\\\nreturn b;\\\\n},\\\\nsave:function(callback) {\\\\nvar that = this;\\\\nvar url = this.formURL.save.url;\\\\nif (that.form.id > 0) {\\\\nurl = this.formURL.update.url;\\\\n}\\\\nthis.$refs.form.validate(function(valid) {\\\\nif (valid) {\\\\nvar form = JSON.parse(JSON.stringify(that.form));\\\\nform.modelId = that.modelId;\\\\nms.http.post(url, form).then(function (res) {\\\\nif(callback) {\\\\ncallback(res);\\\\n}\\\\n});\\\\n}else{\\\\ncallback({result:false,msg:\'请检查表单输入项\'});\\\\n}\\\\n})\\\\n},\\\\n//获取当前站群配置\\\\nget:function(id) {\\\\nvar that = this;\\\\nms.http.get(this.formURL.get.url, Object.assign({\\\\\\\"modelId\\\\\\\":that.modelId},this.formURL.get.params)).then(function (res) {\\\\nif(res.result&&res.data){\\\\nthat.form = res.data;\\\\n}\\\\n}).catch(function (err) {\\\\nconsole.log(err);\\\\n});\\\\n},\\\\n\\\\n},\\\\ncreated:function() {\\\\n//渲染create\\\\n\\\\nthis.get(this.form.linkId)', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/mdiy/config/delete.do', 'POST', 'net.mingsoft.mdiy.action.ConfigAction.delete()', '192.168.0.233', '批量删除自定义模型列表接口', NULL, NULL, '2022-02-28 09:59:19', NULL, 0);
  307. INSERT INTO `logger` VALUES (1498115595065286658, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"2\"\n }\n}', '{\n \"id\":[\"\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n // 启用站群\\\\n {\'action\':\'and\', \'field\': \'SITE_ENABLE\', \'el\': \'eq\', \'model\': \'siteEnable\', \'name\': \'启用站群\', \'type\': \'switch\'},\\\\n // 站群涉及表\\\\n {\'action\':\'and\', \'field\': \'SITE_TABES\', \'el\': \'eq\', \'model\': \'siteTabes\', \'name\': \'站群涉及表\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteEnable\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"Boolean\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"启用站群\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"switch\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"11\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteTabes\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"站群涉及表\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--启用站群-->\\\\n \\\\n <el-form-item label=\\\\\\\"启用站群\\\\\\\" prop=\\\\\\\"siteEnable\\\\\\\">\\\\n <el-switch v-model=\\\\\\\"form.siteEnable\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\">\\\\n </el-switch>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n建议系统初始化时候决定是否启用<br/>\\\\n注:修改后需要重启系统生效 </div>\\\\n </el-form-item>\\\\n \\\\n <!--站群涉及表-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"站群涉及表\\\\\\\" prop=\\\\\\\"siteTabes\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.siteTabes\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入站群涉及表\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n多个表逗号,分割,表中必须存在APP_ID字段<br/>\\\\n注:表有改动需要重新在站点管理初始化APPID </div>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n </el-form>\\\\n</template>\\\\n\\\",\\n \\\"title\\\": \\\"站群配置\\\",\\n \\\"script\\\": \\\"\\\\n\\\\nvar custom_model = Vue.component(\\\\\\\"custom-model\\\\\\\",{\\\\nel: \'#custom-model\',\\\\ndata:function() {\\\\nreturn {\\\\n\\\\nmodelId:0,\\\\nmodelName: \\\\\\\"站群配置\\\\\\\",\\\\n//表单数据\\\\nform: {\\\\nlinkId:0,\\\\n // 启用站群\\\\n siteEnable:false,\\\\n // 站群涉及表\\\\n siteTabes:\'cms_content,cms_category\',\\\\n},\\\\n\\\\nrules:{\\\\n},\\\\n}\\\\n},\\\\nwatch:{\\\\n \\\\n //启用站群 \\\\n \\\\\\\"form.siteEnable\\\\\\\":function(nev,old){\\\\n if(typeof(nev)==\'string\') {\\\\n this.form.siteEnable = (nev==\'true\');\\\\n } \\\\n },\\\\n},\\\\ncomputed:{\\\\n},\\\\nmethods: {\\\\nvalidate:function(){\\\\nvar b = false\\\\nthis.$refs.form.validate(function(valid){\\\\nb = valid;\\\\n});\\\\nreturn b;\\\\n},\\\\nsave:function(callback) {\\\\nvar that = this;\\\\nvar url = this.formURL.save.url;\\\\nif (that.form.id > 0) {\\\\nurl = this.formURL.update.url;\\\\n}\\\\nthis.$refs.form.validate(function(valid) {\\\\nif (valid) {\\\\nvar form = JSON.parse(JSON.stringify(that.form));\\\\nform.modelId = that.modelId;\\\\nms.http.post(url, form).then(function (res) {\\\\nif(callback) {\\\\ncallback(res);\\\\n}\\\\n});\\\\n}else{\\\\ncallback({result:false,msg:\'请检查表单输入项\'});\\\\n}\\\\n})\\\\n},\\\\n//获取当前站群配置\\\\nget:function(id) {\\\\nvar that = this;\\\\nms.http.get(this.formURL.get.url, Object.assign({\\\\\\\"modelId\\\\\\\":that.modelId},this.formURL.get.params)).then(function (res) {\\\\nif(res.result&&res.data){\\\\nthat.form = res.data;\\\\n}\\\\n}).catch(function (err) {\\\\nconsole.log(err);\\\\n});\\\\n},\\\\n\\\\n},\\\\ncreated:function() {\\\\n//渲染create\\\\n\\\\nthis.get(th', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/config/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ConfigAction.importJson()', '192.168.0.233', '导入', NULL, NULL, '2022-02-28 09:59:26', NULL, 0);
  308. INSERT INTO `logger` VALUES (1498115623821434881, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"id\":[\"\"],\n \"modelType\":[\"cms\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n // 启用站群\\\\n {\'action\':\'and\', \'field\': \'SITE_ENABLE\', \'el\': \'eq\', \'model\': \'siteEnable\', \'name\': \'启用站群\', \'type\': \'switch\'},\\\\n // 站群涉及表\\\\n {\'action\':\'and\', \'field\': \'SITE_TABES\', \'el\': \'eq\', \'model\': \'siteTabes\', \'name\': \'站群涉及表\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteEnable\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"Boolean\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"启用站群\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"switch\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"11\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteTabes\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"站群涉及表\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--启用站群-->\\\\n \\\\n <el-form-item label=\\\\\\\"启用站群\\\\\\\" prop=\\\\\\\"siteEnable\\\\\\\">\\\\n <el-switch v-model=\\\\\\\"form.siteEnable\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\">\\\\n </el-switch>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n建议系统初始化时候决定是否启用<br/>\\\\n注:修改后需要重启系统生效 </div>\\\\n </el-form-item>\\\\n \\\\n <!--站群涉及表-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"站群涉及表\\\\\\\" prop=\\\\\\\"siteTabes\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.siteTabes\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入站群涉及表\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n多个表逗号,分割,表中必须存在APP_ID字段<br/>\\\\n注:表有改动需要重新在站点管理初始化APPID </div>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n </el-form>\\\\n</template>\\\\n\\\",\\n \\\"title\\\": \\\"站群配置\\\",\\n \\\"script\\\": \\\"\\\\n\\\\nvar custom_model = Vue.component(\\\\\\\"custom-model\\\\\\\",{\\\\nel: \'#custom-model\',\\\\ndata:function() {\\\\nreturn {\\\\n\\\\nmodelId:0,\\\\nmodelName: \\\\\\\"站群配置\\\\\\\",\\\\n//表单数据\\\\nform: {\\\\nlinkId:0,\\\\n // 启用站群\\\\n siteEnable:false,\\\\n // 站群涉及表\\\\n siteTabes:\'cms_content,cms_category\',\\\\n},\\\\n\\\\nrules:{\\\\n},\\\\n}\\\\n},\\\\nwatch:{\\\\n \\\\n //启用站群 \\\\n \\\\\\\"form.siteEnable\\\\\\\":function(nev,old){\\\\n if(typeof(nev)==\'string\') {\\\\n this.form.siteEnable = (nev==\'true\');\\\\n } \\\\n },\\\\n},\\\\ncomputed:{\\\\n},\\\\nmethods: {\\\\nvalidate:function(){\\\\nvar b = false\\\\nthis.$refs.form.validate(function(valid){\\\\nb = valid;\\\\n});\\\\nreturn b;\\\\n},\\\\nsave:function(callback) {\\\\nvar that = this;\\\\nvar url = this.formURL.save.url;\\\\nif (that.form.id > 0) {\\\\nurl = this.formURL.update.url;\\\\n}\\\\nthis.$refs.form.validate(function(valid) {\\\\nif (valid) {\\\\nvar form = JSON.parse(JSON.stringify(that.form));\\\\nform.modelId = that.modelId;\\\\nms.http.post(url, form).then(function (res) {\\\\nif(callback) {\\\\ncallback(res);\\\\n}\\\\n});\\\\n}else{\\\\ncallback({result:false,msg:\'请检查表单输入项\'});\\\\n}\\\\n})\\\\n},\\\\n//获取当前站群配置\\\\nget:function(id) {\\\\nvar that = this;\\\\nms.http.get(this.formURL.get.url, Object.assign({\\\\\\\"modelId\\\\\\\":that.modelId},this.formURL.get.params)).then(function (res) {\\\\nif(res.result&&res.data){\\\\nthat.form = res.data;\\\\n}\\\\n}).catch(function (err) {\\\\nconsole.log(err);\\\\n});\\\\n},\\\\n\\\\n},\\\\ncreated:function() {\\\\n//渲染c', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/model/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.importJson()', '192.168.0.233', '导入自定义模型', NULL, NULL, '2022-02-28 09:59:33', NULL, 0);
  309. INSERT INTO `logger` VALUES (1498115650564317186, NULL, '{\n \"result\":false,\n \"msg\":\"自定义表名已存在!\",\n \"code\":500\n}', '{\n \"id\":[\"\"],\n \"modelType\":[\"cms\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n // 启用站群\\\\n {\'action\':\'and\', \'field\': \'SITE_ENABLE\', \'el\': \'eq\', \'model\': \'siteEnable\', \'name\': \'启用站群\', \'type\': \'switch\'},\\\\n // 站群涉及表\\\\n {\'action\':\'and\', \'field\': \'SITE_TABES\', \'el\': \'eq\', \'model\': \'siteTabes\', \'name\': \'站群涉及表\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteEnable\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"Boolean\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"启用站群\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"switch\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"11\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteTabes\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"站群涉及表\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--启用站群-->\\\\n \\\\n <el-form-item label=\\\\\\\"启用站群\\\\\\\" prop=\\\\\\\"siteEnable\\\\\\\">\\\\n <el-switch v-model=\\\\\\\"form.siteEnable\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\">\\\\n </el-switch>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n建议系统初始化时候决定是否启用<br/>\\\\n注:修改后需要重启系统生效 </div>\\\\n </el-form-item>\\\\n \\\\n <!--站群涉及表-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"站群涉及表\\\\\\\" prop=\\\\\\\"siteTabes\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.siteTabes\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入站群涉及表\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n多个表逗号,分割,表中必须存在APP_ID字段<br/>\\\\n注:表有改动需要重新在站点管理初始化APPID </div>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n </el-form>\\\\n</template>\\\\n\\\",\\n \\\"title\\\": \\\"站群配置\\\",\\n \\\"script\\\": \\\"\\\\n\\\\nvar custom_model = Vue.component(\\\\\\\"custom-model\\\\\\\",{\\\\nel: \'#custom-model\',\\\\ndata:function() {\\\\nreturn {\\\\n\\\\nmodelId:0,\\\\nmodelName: \\\\\\\"站群配置\\\\\\\",\\\\n//表单数据\\\\nform: {\\\\nlinkId:0,\\\\n // 启用站群\\\\n siteEnable:false,\\\\n // 站群涉及表\\\\n siteTabes:\'cms_content,cms_category\',\\\\n},\\\\n\\\\nrules:{\\\\n},\\\\n}\\\\n},\\\\nwatch:{\\\\n \\\\n //启用站群 \\\\n \\\\\\\"form.siteEnable\\\\\\\":function(nev,old){\\\\n if(typeof(nev)==\'string\') {\\\\n this.form.siteEnable = (nev==\'true\');\\\\n } \\\\n },\\\\n},\\\\ncomputed:{\\\\n},\\\\nmethods: {\\\\nvalidate:function(){\\\\nvar b = false\\\\nthis.$refs.form.validate(function(valid){\\\\nb = valid;\\\\n});\\\\nreturn b;\\\\n},\\\\nsave:function(callback) {\\\\nvar that = this;\\\\nvar url = this.formURL.save.url;\\\\nif (that.form.id > 0) {\\\\nurl = this.formURL.update.url;\\\\n}\\\\nthis.$refs.form.validate(function(valid) {\\\\nif (valid) {\\\\nvar form = JSON.parse(JSON.stringify(that.form));\\\\nform.modelId = that.modelId;\\\\nms.http.post(url, form).then(function (res) {\\\\nif(callback) {\\\\ncallback(res);\\\\n}\\\\n});\\\\n}else{\\\\ncallback({result:false,msg:\'请检查表单输入项\'});\\\\n}\\\\n})\\\\n},\\\\n//获取当前站群配置\\\\nget:function(id) {\\\\nvar that = this;\\\\nms.http.get(this.formURL.get.url, Object.assign({\\\\\\\"modelId\\\\\\\":that.modelId},this.formURL.get.params)).then(function (res) {\\\\nif(res.result&&res.data){\\\\nthat.form = res.data;\\\\n}\\\\n}).catch(function (err) {\\\\nconsole.log(err);\\\\n});\\\\n},\\\\n\\\\n},\\\\ncreated:function() {\\\\n//渲染c', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/model/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.importJson()', '192.168.0.233', '导入自定义模型', NULL, NULL, '2022-02-28 09:59:39', NULL, 0);
  310. INSERT INTO `logger` VALUES (1498115751806427137, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"id\":[\"\"],\n \"modelJson\":[\"{\\\"searchJson\\\":\\\"[\\\\n // 启用站群\\\\n {\'action\':\'and\', \'field\': \'SITE_ENABLE\', \'el\': \'eq\', \'model\': \'siteEnable\', \'name\': \'启用站群\', \'type\': \'switch\'},\\\\n // 站群涉及表\\\\n {\'action\':\'and\', \'field\': \'SITE_TABES\', \'el\': \'eq\', \'model\': \'siteTabes\', \'name\': \'站群涉及表\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\\"field\\\":\\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteEnable\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"Boolean\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"启用站群\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"switch\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"11\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteTabes\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"站群涉及表\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\\"html\\\":\\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--启用站群-->\\\\n \\\\n <el-form-item label=\\\\\\\"启用站群\\\\\\\" prop=\\\\\\\"siteEnable\\\\\\\">\\\\n <el-switch v-model=\\\\\\\"form.siteEnable\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\">\\\\n </el-switch>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n建议系统初始化时候决定是否启用<br/>\\\\n注:修改后需要重启系统生效 </div>\\\\n </el-form-item>\\\\n \\\\n <!--站群涉及表-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"站群涉及表\\\\\\\" prop=\\\\\\\"siteTabes\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.siteTabes\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入站群涉及表\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n多个表逗号,分割,表中必须存在APP_ID字段<br/>\\\\n注:表有改动需要重新在站点管理初始化APPID </div>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n </el-form>\\\\n</template>\\\\n\\\",\\\"title\\\":\\\"站群配置\\\",\\\"script\\\":\\\"\\\\n\\\\nvar custom_model = Vue.component(\\\\\\\"custom-model\\\\\\\",{\\\\nel: \'#custom-model\',\\\\ndata:function() {\\\\nreturn {\\\\n\\\\nmodelId:0,\\\\nmodelName: \\\\\\\"站群配置\\\\\\\",\\\\n//表单数据\\\\nform: {\\\\nlinkId:0,\\\\n // 启用站群\\\\n siteEnable:false,\\\\n // 站群涉及表\\\\n siteTabes:\'cms_content,cms_category\',\\\\n},\\\\n\\\\nrules:{\\\\n},\\\\n}\\\\n},\\\\nwatch:{\\\\n \\\\n //启用站群 \\\\n \\\\\\\"form.siteEnable\\\\\\\":function(nev,old){\\\\n if(typeof(nev)==\'string\') {\\\\n this.form.siteEnable = (nev==\'true\');\\\\n } \\\\n },\\\\n},\\\\ncomputed:{\\\\n},\\\\nmethods: {\\\\nvalidate:function(){\\\\nvar b = false\\\\nthis.$refs.form.validate(function(valid){\\\\nb = valid;\\\\n});\\\\nreturn b;\\\\n},\\\\nsave:function(callback) {\\\\nvar that = this;\\\\nvar url = this.formURL.save.url;\\\\nif (that.form.id > 0) {\\\\nurl = this.formURL.update.url;\\\\n}\\\\nthis.$refs.form.validate(function(valid) {\\\\nif (valid) {\\\\nvar form = JSON.parse(JSON.stringify(that.form));\\\\nform.modelId = that.modelId;\\\\nms.http.post(url, form).then(function (res) {\\\\nif(callback) {\\\\ncallback(res);\\\\n}\\\\n});\\\\n}else{\\\\ncallback({result:false,msg:\'请检查表单输入项\'});\\\\n}\\\\n})\\\\n},\\\\n//获取当前站群配置\\\\nget:function(id) {\\\\nvar that = this;\\\\nms.http.get(this.formURL.get.url, Object.assign({\\\\\\\"modelId\\\\\\\":that.modelId},this.formURL.get.params)).then(function (res) {\\\\nif(res.result&&res.data){\\\\nthat.form = res.data;\\\\n}\\\\n}).catch(function (err) {\\\\nconsole.log(err);\\\\n});\\\\n},\\\\n\\\\n},\\\\ncreated:function() {\\\\n//渲染create\\\\n\\\\nthis.get(this.form.linkId);\\\\n}\\\\n})', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/form/importJson.do', 'POST', 'net.mingsoft.mdiy.action.FormAction.importJson()', '192.168.0.233', '导入', NULL, NULL, '2022-02-28 10:00:04', NULL, 0);
  311. INSERT INTO `logger` VALUES (1498115808240787458, NULL, '{\n \"result\":false,\n \"msg\":\"自定义表名已存在!\",\n \"code\":500\n}', '{\n \"id\":[\"\"],\n \"modelJson\":[\"{\\\"searchJson\\\":\\\"[\\\\n // 启用站群\\\\n {\'action\':\'and\', \'field\': \'SITE_ENABLE\', \'el\': \'eq\', \'model\': \'siteEnable\', \'name\': \'启用站群\', \'type\': \'switch\'},\\\\n // 站群涉及表\\\\n {\'action\':\'and\', \'field\': \'SITE_TABES\', \'el\': \'eq\', \'model\': \'siteTabes\', \'name\': \'站群涉及表\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\\"field\\\":\\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteEnable\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"Boolean\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"启用站群\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"switch\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"11\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteTabes\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"站群涉及表\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\\"html\\\":\\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--启用站群-->\\\\n \\\\n <el-form-item label=\\\\\\\"启用站群\\\\\\\" prop=\\\\\\\"siteEnable\\\\\\\">\\\\n <el-switch v-model=\\\\\\\"form.siteEnable\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\">\\\\n </el-switch>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n建议系统初始化时候决定是否启用<br/>\\\\n注:修改后需要重启系统生效 </div>\\\\n </el-form-item>\\\\n \\\\n <!--站群涉及表-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"站群涉及表\\\\\\\" prop=\\\\\\\"siteTabes\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.siteTabes\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入站群涉及表\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n多个表逗号,分割,表中必须存在APP_ID字段<br/>\\\\n注:表有改动需要重新在站点管理初始化APPID </div>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n </el-form>\\\\n</template>\\\\n\\\",\\\"title\\\":\\\"站群配置\\\",\\\"script\\\":\\\"\\\\n\\\\nvar custom_model = Vue.component(\\\\\\\"custom-model\\\\\\\",{\\\\nel: \'#custom-model\',\\\\ndata:function() {\\\\nreturn {\\\\n\\\\nmodelId:0,\\\\nmodelName: \\\\\\\"站群配置\\\\\\\",\\\\n//表单数据\\\\nform: {\\\\nlinkId:0,\\\\n // 启用站群\\\\n siteEnable:false,\\\\n // 站群涉及表\\\\n siteTabes:\'cms_content,cms_category\',\\\\n},\\\\n\\\\nrules:{\\\\n},\\\\n}\\\\n},\\\\nwatch:{\\\\n \\\\n //启用站群 \\\\n \\\\\\\"form.siteEnable\\\\\\\":function(nev,old){\\\\n if(typeof(nev)==\'string\') {\\\\n this.form.siteEnable = (nev==\'true\');\\\\n } \\\\n },\\\\n},\\\\ncomputed:{\\\\n},\\\\nmethods: {\\\\nvalidate:function(){\\\\nvar b = false\\\\nthis.$refs.form.validate(function(valid){\\\\nb = valid;\\\\n});\\\\nreturn b;\\\\n},\\\\nsave:function(callback) {\\\\nvar that = this;\\\\nvar url = this.formURL.save.url;\\\\nif (that.form.id > 0) {\\\\nurl = this.formURL.update.url;\\\\n}\\\\nthis.$refs.form.validate(function(valid) {\\\\nif (valid) {\\\\nvar form = JSON.parse(JSON.stringify(that.form));\\\\nform.modelId = that.modelId;\\\\nms.http.post(url, form).then(function (res) {\\\\nif(callback) {\\\\ncallback(res);\\\\n}\\\\n});\\\\n}else{\\\\ncallback({result:false,msg:\'请检查表单输入项\'});\\\\n}\\\\n})\\\\n},\\\\n//获取当前站群配置\\\\nget:function(id) {\\\\nvar that = this;\\\\nms.http.get(this.formURL.get.url, Object.assign({\\\\\\\"modelId\\\\\\\":that.modelId},this.formURL.get.params)).then(function (res) {\\\\nif(res.result&&res.data){\\\\nthat.form = res.data;\\\\n}\\\\n}).catch(function (err) {\\\\nconsole.log(err);\\\\n});\\\\n},\\\\n\\\\n},\\\\ncreated:function() {\\\\n//渲染create\\\\n\\\\nthis.get(this.form.linkId);\\\\n}\\\\n})', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/form/importJson.do', 'POST', 'net.mingsoft.mdiy.action.FormAction.importJson()', '192.168.0.233', '导入', NULL, NULL, '2022-02-28 10:00:17', NULL, 0);
  312. INSERT INTO `logger` VALUES (1498115819842232322, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"del\":0,\n \"fieldMap\":{\n \"siteEnable\":\"SITE_ENABLE\",\n \"siteTabes\":\"SITE_TABES\"\n },\n \"formUrl\":\"119fee3f84bbe4a1bce00a06ec9c0b31\",\n \"id\":\"19\",\n \"modelCustomType\":\"post\",\n \"modelField\":\"[\\n {\\n \\\"model\\\":\\\"siteEnable\\\",\\n \\\"key\\\":\\\"SITE_ENABLE\\\",\\n \\\"field\\\":\\\"SITE_ENABLE\\\",\\n \\\"javaType\\\":\\\"Boolean\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"启用站群\\\",\\n \\\"type\\\":\\\"switch\\\",\\n \\\"length\\\":\\\"11\\\",\\n \\\"isShow\\\":\\\"false\\\"\\n }\\n ,{\\n \\\"model\\\":\\\"siteTabes\\\",\\n \\\"key\\\":\\\"SITE_TABES\\\",\\n \\\"field\\\":\\\"SITE_TABES\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"站群涉及表\\\",\\n \\\"type\\\":\\\"textarea\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"false\\\"\\n }\\n]\\n\\n\",\n \"modelJson\":\"{\\\"searchJson\\\":\\\"[\\\\n // 启用站群\\\\n {\'action\':\'and\', \'field\': \'SITE_ENABLE\', \'el\': \'eq\', \'model\': \'siteEnable\', \'name\': \'启用站群\', \'type\': \'switch\'},\\\\n // 站群涉及表\\\\n {\'action\':\'and\', \'field\': \'SITE_TABES\', \'el\': \'eq\', \'model\': \'siteTabes\', \'name\': \'站群涉及表\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\\"isWebSubmit\\\":false,\\\"html\\\":\\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--启用站群-->\\\\n \\\\n <el-form-item label=\\\\\\\"启用站群\\\\\\\" prop=\\\\\\\"siteEnable\\\\\\\">\\\\n <el-switch v-model=\\\\\\\"form.siteEnable\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\">\\\\n </el-switch>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n建议系统初始化时候决定是否启用<br/>\\\\n注:修改后需要重启系统生效 </div>\\\\n </el-form-item>\\\\n \\\\n <!--站群涉及表-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"站群涉及表\\\\\\\" prop=\\\\\\\"siteTabes\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.siteTabes\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入站群涉及表\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n多个表逗号,分割,表中必须存在APP_ID字段<br/>\\\\n注:表有改动需要重新在站点管理初始化APPID </div>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n </el-form>\\\\n</template>\\\\n\\\",\\\"script\\\":\\\"\\\\n\\\\nvar custom_model = Vue.component(\\\\\\\"custom-model\\\\\\\",{\\\\nel: \'#custom-model\',\\\\ndata:function() {\\\\nreturn {\\\\n\\\\nmodelId:0,\\\\nmodelName: \\\\\\\"站群配置\\\\\\\",\\\\n//表单数据\\\\nform: {\\\\nlinkId:0,\\\\n // 启用站群\\\\n siteEnable:false,\\\\n // 站群涉及表\\\\n siteTabes:\'cms_content,cms_category\',\\\\n},\\\\n\\\\nrules:{\\\\n},\\\\n}\\\\n},\\\\nwatch:{\\\\n \\\\n //启用站群 \\\\n \\\\\\\"form.siteEnable\\\\\\\":function(nev,old){\\\\n if(typeof(nev)==\'string\') {\\\\n this.form.siteEnable = (nev==\'true\');\\\\n } \\\\n },\\\\n},\\\\ncomputed:{\\\\n},\\\\nmethods: {\\\\nvalidate:function(){\\\\nvar b = false\\\\nthis.$refs.form.validate(function(valid){\\\\nb = valid;\\\\n});\\\\nreturn b;\\\\n},\\\\nsave:function(callback) {\\\\nvar that = this;\\\\nvar url = this.formURL.save.url;\\\\nif (that.form.id > 0) {\\\\nurl = this.formURL.update.url;\\\\n}\\\\nthis.$refs.form.validate(function(valid) {\\\\nif (valid) {\\\\nvar form = JSON.parse(JSON.stringify(that.form));\\\\nform.modelId = that.modelId;\\\\nms.http.post(url, form).then(function (res) {\\\\nif(callback) {\\\\ncallback(res);\\\\n}\\\\n});\\\\n}else{\\\\ncallback({result:false,msg:\'请检查表单输入项\'});\\\\n}\\\\n})\\\\n},\\\\n//获取当前站群配置\\\\nget:function(id) {\\\\nvar that = this;\\\\nms.http.get(this.formURL.get.url, Object.assign({\\\\\\\"modelId\\\\\\\":that.modelId},this.formURL.get.params)).then(function (res) {\\\\nif(res.result&&res.data){\\\\nthat.form = res.data;\\\\n}\\\\n}).catch(function (err) {\\\\nconsole.log(err);\\\\n});\\\\n},\\\\n\\\\n},\\\\ncreated:function() {\\\\n//渲染create\\\\n\\\\nthis.get(this.form.linkId);\\', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/mdiy/form/delete.do', 'POST', 'net.mingsoft.mdiy.action.FormAction.delete()', '192.168.0.233', '批量删除自定义模型列表接口', NULL, NULL, '2022-02-28 10:00:20', NULL, 0);
  313. INSERT INTO `logger` VALUES (1498115871327313921, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"del\":0,\n \"fieldMap\":{\n \"siteEnable\":\"SITE_ENABLE\",\n \"siteTabes\":\"SITE_TABES\"\n },\n \"formUrl\":\"0129523283bf48142db53e16f750dc18\",\n \"id\":\"18\",\n \"modelCustomType\":\"model\",\n \"modelField\":\"[\\n {\\n \\\"model\\\":\\\"siteEnable\\\",\\n \\\"key\\\":\\\"SITE_ENABLE\\\",\\n \\\"field\\\":\\\"SITE_ENABLE\\\",\\n \\\"javaType\\\":\\\"Boolean\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"启用站群\\\",\\n \\\"type\\\":\\\"switch\\\",\\n \\\"length\\\":\\\"11\\\",\\n \\\"isShow\\\":\\\"false\\\"\\n }\\n ,{\\n \\\"model\\\":\\\"siteTabes\\\",\\n \\\"key\\\":\\\"SITE_TABES\\\",\\n \\\"field\\\":\\\"SITE_TABES\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"站群涉及表\\\",\\n \\\"type\\\":\\\"textarea\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"false\\\"\\n }\\n]\\n\\n\",\n \"modelJson\":\"{\\\"searchJson\\\":\\\"[\\\\n // 启用站群\\\\n {\'action\':\'and\', \'field\': \'SITE_ENABLE\', \'el\': \'eq\', \'model\': \'siteEnable\', \'name\': \'启用站群\', \'type\': \'switch\'},\\\\n // 站群涉及表\\\\n {\'action\':\'and\', \'field\': \'SITE_TABES\', \'el\': \'eq\', \'model\': \'siteTabes\', \'name\': \'站群涉及表\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\\"isWebSubmit\\\":false,\\\"html\\\":\\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--启用站群-->\\\\n \\\\n <el-form-item label=\\\\\\\"启用站群\\\\\\\" prop=\\\\\\\"siteEnable\\\\\\\">\\\\n <el-switch v-model=\\\\\\\"form.siteEnable\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\">\\\\n </el-switch>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n建议系统初始化时候决定是否启用<br/>\\\\n注:修改后需要重启系统生效 </div>\\\\n </el-form-item>\\\\n \\\\n <!--站群涉及表-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"站群涉及表\\\\\\\" prop=\\\\\\\"siteTabes\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.siteTabes\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入站群涉及表\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n多个表逗号,分割,表中必须存在APP_ID字段<br/>\\\\n注:表有改动需要重新在站点管理初始化APPID </div>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n </el-form>\\\\n</template>\\\\n\\\",\\\"script\\\":\\\"\\\\n\\\\nvar custom_model = Vue.component(\\\\\\\"custom-model\\\\\\\",{\\\\nel: \'#custom-model\',\\\\ndata:function() {\\\\nreturn {\\\\n\\\\nmodelId:0,\\\\nmodelName: \\\\\\\"站群配置\\\\\\\",\\\\n//表单数据\\\\nform: {\\\\nlinkId:0,\\\\n // 启用站群\\\\n siteEnable:false,\\\\n // 站群涉及表\\\\n siteTabes:\'cms_content,cms_category\',\\\\n},\\\\n\\\\nrules:{\\\\n},\\\\n}\\\\n},\\\\nwatch:{\\\\n \\\\n //启用站群 \\\\n \\\\\\\"form.siteEnable\\\\\\\":function(nev,old){\\\\n if(typeof(nev)==\'string\') {\\\\n this.form.siteEnable = (nev==\'true\');\\\\n } \\\\n },\\\\n},\\\\ncomputed:{\\\\n},\\\\nmethods: {\\\\nvalidate:function(){\\\\nvar b = false\\\\nthis.$refs.form.validate(function(valid){\\\\nb = valid;\\\\n});\\\\nreturn b;\\\\n},\\\\nsave:function(callback) {\\\\nvar that = this;\\\\nvar url = this.formURL.save.url;\\\\nif (that.form.id > 0) {\\\\nurl = this.formURL.update.url;\\\\n}\\\\nthis.$refs.form.validate(function(valid) {\\\\nif (valid) {\\\\nvar form = JSON.parse(JSON.stringify(that.form));\\\\nform.modelId = that.modelId;\\\\nms.http.post(url, form).then(function (res) {\\\\nif(callback) {\\\\ncallback(res);\\\\n}\\\\n});\\\\n}else{\\\\ncallback({result:false,msg:\'请检查表单输入项\'});\\\\n}\\\\n})\\\\n},\\\\n//获取当前站群配置\\\\nget:function(id) {\\\\nvar that = this;\\\\nms.http.get(this.formURL.get.url, Object.assign({\\\\\\\"modelId\\\\\\\":that.modelId},this.formURL.get.params)).then(function (res) {\\\\nif(res.result&&res.data){\\\\nthat.form = res.data;\\\\n}\\\\n}).catch(function (err) {\\\\nconsole.log(err);\\\\n});\\\\n},\\\\n\\\\n},\\\\ncreated:function() {\\\\n//渲染create\\\\n\\\\nthis.get(this.form.linkId);', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/mdiy/model/delete.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.delete()', '192.168.0.233', '批量删除自定义模型', NULL, NULL, '2022-02-28 10:00:32', NULL, 0);
  314. INSERT INTO `logger` VALUES (1498115912301469697, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"id\":[\"\"],\n \"modelType\":[\"cms\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n // 启用站群\\\\n {\'action\':\'and\', \'field\': \'SITE_ENABLE\', \'el\': \'eq\', \'model\': \'siteEnable\', \'name\': \'启用站群\', \'type\': \'switch\'},\\\\n // 站群涉及表\\\\n {\'action\':\'and\', \'field\': \'SITE_TABES\', \'el\': \'eq\', \'model\': \'siteTabes\', \'name\': \'站群涉及表\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteEnable\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"Boolean\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"启用站群\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"switch\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"11\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteTabes\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"站群涉及表\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--启用站群-->\\\\n \\\\n <el-form-item label=\\\\\\\"启用站群\\\\\\\" prop=\\\\\\\"siteEnable\\\\\\\">\\\\n <el-switch v-model=\\\\\\\"form.siteEnable\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\">\\\\n </el-switch>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n建议系统初始化时候决定是否启用<br/>\\\\n注:修改后需要重启系统生效 </div>\\\\n </el-form-item>\\\\n \\\\n <!--站群涉及表-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"站群涉及表\\\\\\\" prop=\\\\\\\"siteTabes\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.siteTabes\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入站群涉及表\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n多个表逗号,分割,表中必须存在APP_ID字段<br/>\\\\n注:表有改动需要重新在站点管理初始化APPID </div>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n </el-form>\\\\n</template>\\\\n\\\",\\n \\\"title\\\": \\\"站群配置\\\",\\n \\\"script\\\": \\\"\\\\n\\\\nvar custom_model = Vue.component(\\\\\\\"custom-model\\\\\\\",{\\\\nel: \'#custom-model\',\\\\ndata:function() {\\\\nreturn {\\\\n\\\\nmodelId:0,\\\\nmodelName: \\\\\\\"站群配置\\\\\\\",\\\\n//表单数据\\\\nform: {\\\\nlinkId:0,\\\\n // 启用站群\\\\n siteEnable:false,\\\\n // 站群涉及表\\\\n siteTabes:\'cms_content,cms_category\',\\\\n},\\\\n\\\\nrules:{\\\\n},\\\\n}\\\\n},\\\\nwatch:{\\\\n \\\\n //启用站群 \\\\n \\\\\\\"form.siteEnable\\\\\\\":function(nev,old){\\\\n if(typeof(nev)==\'string\') {\\\\n this.form.siteEnable = (nev==\'true\');\\\\n } \\\\n },\\\\n},\\\\ncomputed:{\\\\n},\\\\nmethods: {\\\\nvalidate:function(){\\\\nvar b = false\\\\nthis.$refs.form.validate(function(valid){\\\\nb = valid;\\\\n});\\\\nreturn b;\\\\n},\\\\nsave:function(callback) {\\\\nvar that = this;\\\\nvar url = this.formURL.save.url;\\\\nif (that.form.id > 0) {\\\\nurl = this.formURL.update.url;\\\\n}\\\\nthis.$refs.form.validate(function(valid) {\\\\nif (valid) {\\\\nvar form = JSON.parse(JSON.stringify(that.form));\\\\nform.modelId = that.modelId;\\\\nms.http.post(url, form).then(function (res) {\\\\nif(callback) {\\\\ncallback(res);\\\\n}\\\\n});\\\\n}else{\\\\ncallback({result:false,msg:\'请检查表单输入项\'});\\\\n}\\\\n})\\\\n},\\\\n//获取当前站群配置\\\\nget:function(id) {\\\\nvar that = this;\\\\nms.http.get(this.formURL.get.url, Object.assign({\\\\\\\"modelId\\\\\\\":that.modelId},this.formURL.get.params)).then(function (res) {\\\\nif(res.result&&res.data){\\\\nthat.form = res.data;\\\\n}\\\\n}).catch(function (err) {\\\\nconsole.log(err);\\\\n});\\\\n},\\\\n\\\\n},\\\\ncreated:function() {\\\\n//渲染c', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/model/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.importJson()', '192.168.0.233', '导入自定义模型', NULL, NULL, '2022-02-28 10:00:42', NULL, 0);
  315. INSERT INTO `logger` VALUES (1498115937215635457, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"id\":[\"\"],\n \"modelJson\":[\"{\\\"searchJson\\\":\\\"[\\\\n // 启用站群\\\\n {\'action\':\'and\', \'field\': \'SITE_ENABLE\', \'el\': \'eq\', \'model\': \'siteEnable\', \'name\': \'启用站群\', \'type\': \'switch\'},\\\\n // 站群涉及表\\\\n {\'action\':\'and\', \'field\': \'SITE_TABES\', \'el\': \'eq\', \'model\': \'siteTabes\', \'name\': \'站群涉及表\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\\"field\\\":\\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteEnable\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"Boolean\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"启用站群\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"switch\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"11\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteTabes\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"站群涉及表\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\\"html\\\":\\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--启用站群-->\\\\n \\\\n <el-form-item label=\\\\\\\"启用站群\\\\\\\" prop=\\\\\\\"siteEnable\\\\\\\">\\\\n <el-switch v-model=\\\\\\\"form.siteEnable\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\">\\\\n </el-switch>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n建议系统初始化时候决定是否启用<br/>\\\\n注:修改后需要重启系统生效 </div>\\\\n </el-form-item>\\\\n \\\\n <!--站群涉及表-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"站群涉及表\\\\\\\" prop=\\\\\\\"siteTabes\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.siteTabes\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入站群涉及表\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n多个表逗号,分割,表中必须存在APP_ID字段<br/>\\\\n注:表有改动需要重新在站点管理初始化APPID </div>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n </el-form>\\\\n</template>\\\\n\\\",\\\"title\\\":\\\"站群配置\\\",\\\"script\\\":\\\"\\\\n\\\\nvar custom_model = Vue.component(\\\\\\\"custom-model\\\\\\\",{\\\\nel: \'#custom-model\',\\\\ndata:function() {\\\\nreturn {\\\\n\\\\nmodelId:0,\\\\nmodelName: \\\\\\\"站群配置\\\\\\\",\\\\n//表单数据\\\\nform: {\\\\nlinkId:0,\\\\n // 启用站群\\\\n siteEnable:false,\\\\n // 站群涉及表\\\\n siteTabes:\'cms_content,cms_category\',\\\\n},\\\\n\\\\nrules:{\\\\n},\\\\n}\\\\n},\\\\nwatch:{\\\\n \\\\n //启用站群 \\\\n \\\\\\\"form.siteEnable\\\\\\\":function(nev,old){\\\\n if(typeof(nev)==\'string\') {\\\\n this.form.siteEnable = (nev==\'true\');\\\\n } \\\\n },\\\\n},\\\\ncomputed:{\\\\n},\\\\nmethods: {\\\\nvalidate:function(){\\\\nvar b = false\\\\nthis.$refs.form.validate(function(valid){\\\\nb = valid;\\\\n});\\\\nreturn b;\\\\n},\\\\nsave:function(callback) {\\\\nvar that = this;\\\\nvar url = this.formURL.save.url;\\\\nif (that.form.id > 0) {\\\\nurl = this.formURL.update.url;\\\\n}\\\\nthis.$refs.form.validate(function(valid) {\\\\nif (valid) {\\\\nvar form = JSON.parse(JSON.stringify(that.form));\\\\nform.modelId = that.modelId;\\\\nms.http.post(url, form).then(function (res) {\\\\nif(callback) {\\\\ncallback(res);\\\\n}\\\\n});\\\\n}else{\\\\ncallback({result:false,msg:\'请检查表单输入项\'});\\\\n}\\\\n})\\\\n},\\\\n//获取当前站群配置\\\\nget:function(id) {\\\\nvar that = this;\\\\nms.http.get(this.formURL.get.url, Object.assign({\\\\\\\"modelId\\\\\\\":that.modelId},this.formURL.get.params)).then(function (res) {\\\\nif(res.result&&res.data){\\\\nthat.form = res.data;\\\\n}\\\\n}).catch(function (err) {\\\\nconsole.log(err);\\\\n});\\\\n},\\\\n\\\\n},\\\\ncreated:function() {\\\\n//渲染create\\\\n\\\\nthis.get(this.form.linkId);\\\\n}\\\\n})', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/form/importJson.do', 'POST', 'net.mingsoft.mdiy.action.FormAction.importJson()', '192.168.0.233', '导入', NULL, NULL, '2022-02-28 10:00:48', NULL, 0);
  316. INSERT INTO `logger` VALUES (1498116294759079937, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"linkId\":[\"0\"],\n \"siteEnable\":[\"false\"],\n \"siteTabes\":[\"cms_content,cms_category\"],\n \"modelId\":[\"21\"]\n}', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/formData/save.do', 'POST', 'net.mingsoft.mdiy.action.FormDataAction.save()', '192.168.0.233', '更新自定义业务数据', NULL, NULL, '2022-02-28 10:02:13', NULL, 0);
  317. INSERT INTO `logger` VALUES (1498116557557391361, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"linkId\":[\"0\"],\n \"siteEnable\":[\"true\"],\n \"siteTabes\":[\"retetewttw\"],\n \"modelId\":[\"21\"]\n}', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/formData/save.do', 'POST', 'net.mingsoft.mdiy.action.FormDataAction.save()', '192.168.0.233', '更新自定义业务数据', NULL, NULL, '2022-02-28 10:03:16', NULL, 0);
  318. INSERT INTO `logger` VALUES (1498117547568324610, NULL, '{\n \"result\":false,\n \"msg\":\"自定义表名已存在!\",\n \"code\":500\n}', '{\n \"modelType\":[\"cms\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n // 启用站群\\\\n {\'action\':\'and\', \'field\': \'SITE_ENABLE\', \'el\': \'eq\', \'model\': \'siteEnable\', \'name\': \'启用站群\', \'type\': \'switch\'},\\\\n // 站群涉及表\\\\n {\'action\':\'and\', \'field\': \'SITE_TABES\', \'el\': \'eq\', \'model\': \'siteTabes\', \'name\': \'站群涉及表\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteEnable\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"Boolean\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"启用站群\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"switch\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"11\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteTabes\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"站群涉及表\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--启用站群-->\\\\n \\\\n <el-form-item label=\\\\\\\"启用站群\\\\\\\" prop=\\\\\\\"siteEnable\\\\\\\">\\\\n <el-switch v-model=\\\\\\\"form.siteEnable\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\">\\\\n </el-switch>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n建议系统初始化时候决定是否启用<br/>\\\\n注:修改后需要重启系统生效 </div>\\\\n </el-form-item>\\\\n \\\\n <!--站群涉及表-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"站群涉及表\\\\\\\" prop=\\\\\\\"siteTabes\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.siteTabes\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入站群涉及表\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n多个表逗号,分割,表中必须存在APP_ID字段<br/>\\\\n注:表有改动需要重新在站点管理初始化APPID </div>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n </el-form>\\\\n</template>\\\\n\\\",\\n \\\"title\\\": \\\"站群配置\\\",\\n \\\"script\\\": \\\"\\\\n\\\\nvar custom_model = Vue.component(\\\\\\\"custom-model\\\\\\\",{\\\\nel: \'#custom-model\',\\\\ndata:function() {\\\\nreturn {\\\\n\\\\nmodelId:0,\\\\nmodelName: \\\\\\\"站群配置\\\\\\\",\\\\n//表单数据\\\\nform: {\\\\nlinkId:0,\\\\n // 启用站群\\\\n siteEnable:false,\\\\n // 站群涉及表\\\\n siteTabes:\'cms_content,cms_category\',\\\\n},\\\\n\\\\nrules:{\\\\n},\\\\n}\\\\n},\\\\nwatch:{\\\\n \\\\n //启用站群 \\\\n \\\\\\\"form.siteEnable\\\\\\\":function(nev,old){\\\\n if(typeof(nev)==\'string\') {\\\\n this.form.siteEnable = (nev==\'true\');\\\\n } \\\\n },\\\\n},\\\\ncomputed:{\\\\n},\\\\nmethods: {\\\\nvalidate:function(){\\\\nvar b = false\\\\nthis.$refs.form.validate(function(valid){\\\\nb = valid;\\\\n});\\\\nreturn b;\\\\n},\\\\nsave:function(callback) {\\\\nvar that = this;\\\\nvar url = this.formURL.save.url;\\\\nif (that.form.id > 0) {\\\\nurl = this.formURL.update.url;\\\\n}\\\\nthis.$refs.form.validate(function(valid) {\\\\nif (valid) {\\\\nvar form = JSON.parse(JSON.stringify(that.form));\\\\nform.modelId = that.modelId;\\\\nms.http.post(url, form).then(function (res) {\\\\nif(callback) {\\\\ncallback(res);\\\\n}\\\\n});\\\\n}else{\\\\ncallback({result:false,msg:\'请检查表单输入项\'});\\\\n}\\\\n})\\\\n},\\\\n//获取当前站群配置\\\\nget:function(id) {\\\\nvar that = this;\\\\nms.http.get(this.formURL.get.url, Object.assign({\\\\\\\"modelId\\\\\\\":that.modelId},this.formURL.get.params)).then(function (res) {\\\\nif(res.result&&res.data){\\\\nthat.form = res.data;\\\\n}\\\\n}).catch(function (err) {\\\\nconsole.log(err);\\\\n});\\\\n},\\\\n\\\\n},\\\\ncreated:function() {\\\\n//渲染create\\\\n\\\\nt', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/model/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.importJson()', '192.168.0.233', '导入自定义模型', NULL, NULL, '2022-02-28 10:07:12', NULL, 0);
  319. INSERT INTO `logger` VALUES (1498117581634461697, NULL, '{\n \"result\":false,\n \"msg\":\"自定义表名已存在!\",\n \"code\":500\n}', '{\n \"id\":[\"\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n // 启用站群\\\\n {\'action\':\'and\', \'field\': \'SITE_ENABLE\', \'el\': \'eq\', \'model\': \'siteEnable\', \'name\': \'启用站群\', \'type\': \'switch\'},\\\\n // 站群涉及表\\\\n {\'action\':\'and\', \'field\': \'SITE_TABES\', \'el\': \'eq\', \'model\': \'siteTabes\', \'name\': \'站群涉及表\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteEnable\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"Boolean\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"启用站群\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"switch\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"11\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteTabes\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"站群涉及表\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--启用站群-->\\\\n \\\\n <el-form-item label=\\\\\\\"启用站群\\\\\\\" prop=\\\\\\\"siteEnable\\\\\\\">\\\\n <el-switch v-model=\\\\\\\"form.siteEnable\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\">\\\\n </el-switch>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n建议系统初始化时候决定是否启用<br/>\\\\n注:修改后需要重启系统生效 </div>\\\\n </el-form-item>\\\\n \\\\n <!--站群涉及表-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"站群涉及表\\\\\\\" prop=\\\\\\\"siteTabes\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.siteTabes\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入站群涉及表\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n多个表逗号,分割,表中必须存在APP_ID字段<br/>\\\\n注:表有改动需要重新在站点管理初始化APPID </div>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n </el-form>\\\\n</template>\\\\n\\\",\\n \\\"title\\\": \\\"站群配置\\\",\\n \\\"script\\\": \\\"\\\\n\\\\nvar custom_model = Vue.component(\\\\\\\"custom-model\\\\\\\",{\\\\nel: \'#custom-model\',\\\\ndata:function() {\\\\nreturn {\\\\n\\\\nmodelId:0,\\\\nmodelName: \\\\\\\"站群配置\\\\\\\",\\\\n//表单数据\\\\nform: {\\\\nlinkId:0,\\\\n // 启用站群\\\\n siteEnable:false,\\\\n // 站群涉及表\\\\n siteTabes:\'cms_content,cms_category\',\\\\n},\\\\n\\\\nrules:{\\\\n},\\\\n}\\\\n},\\\\nwatch:{\\\\n \\\\n //启用站群 \\\\n \\\\\\\"form.siteEnable\\\\\\\":function(nev,old){\\\\n if(typeof(nev)==\'string\') {\\\\n this.form.siteEnable = (nev==\'true\');\\\\n } \\\\n },\\\\n},\\\\ncomputed:{\\\\n},\\\\nmethods: {\\\\nvalidate:function(){\\\\nvar b = false\\\\nthis.$refs.form.validate(function(valid){\\\\nb = valid;\\\\n});\\\\nreturn b;\\\\n},\\\\nsave:function(callback) {\\\\nvar that = this;\\\\nvar url = this.formURL.save.url;\\\\nif (that.form.id > 0) {\\\\nurl = this.formURL.update.url;\\\\n}\\\\nthis.$refs.form.validate(function(valid) {\\\\nif (valid) {\\\\nvar form = JSON.parse(JSON.stringify(that.form));\\\\nform.modelId = that.modelId;\\\\nms.http.post(url, form).then(function (res) {\\\\nif(callback) {\\\\ncallback(res);\\\\n}\\\\n});\\\\n}else{\\\\ncallback({result:false,msg:\'请检查表单输入项\'});\\\\n}\\\\n})\\\\n},\\\\n//获取当前站群配置\\\\nget:function(id) {\\\\nvar that = this;\\\\nms.http.get(this.formURL.get.url, Object.assign({\\\\\\\"modelId\\\\\\\":that.modelId},this.formURL.get.params)).then(function (res) {\\\\nif(res.result&&res.data){\\\\nthat.form = res.data;\\\\n}\\\\n}).catch(function (err) {\\\\nconsole.log(err);\\\\n});\\\\n},\\\\n\\\\n},\\\\ncreated:function() {\\\\n//渲染create\\\\n\\\\nthis.get(th', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/config/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ConfigAction.importJson()', '192.168.0.233', '导入', NULL, NULL, '2022-02-28 10:07:20', NULL, 0);
  320. INSERT INTO `logger` VALUES (1498118484823302146, NULL, '{\n \"result\":false,\n \"msg\":\"自定义表名已存在!\",\n \"code\":500\n}', '{\n \"id\":[\"\"],\n \"modelJson\":[\"{\\\"searchJson\\\":\\\"[\\\\n // 启用站群\\\\n {\'action\':\'and\', \'field\': \'SITE_ENABLE\', \'el\': \'eq\', \'model\': \'siteEnable\', \'name\': \'启用站群\', \'type\': \'switch\'},\\\\n // 站群涉及表\\\\n {\'action\':\'and\', \'field\': \'SITE_TABES\', \'el\': \'eq\', \'model\': \'siteTabes\', \'name\': \'站群涉及表\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\\"field\\\":\\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteEnable\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"Boolean\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"启用站群\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"switch\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"11\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteTabes\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"站群涉及表\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\\"html\\\":\\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--启用站群-->\\\\n \\\\n <el-form-item label=\\\\\\\"启用站群\\\\\\\" prop=\\\\\\\"siteEnable\\\\\\\">\\\\n <el-switch v-model=\\\\\\\"form.siteEnable\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\">\\\\n </el-switch>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n建议系统初始化时候决定是否启用<br/>\\\\n注:修改后需要重启系统生效 </div>\\\\n </el-form-item>\\\\n \\\\n <!--站群涉及表-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"站群涉及表\\\\\\\" prop=\\\\\\\"siteTabes\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.siteTabes\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入站群涉及表\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n多个表逗号,分割,表中必须存在APP_ID字段<br/>\\\\n注:表有改动需要重新在站点管理初始化APPID </div>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n </el-form>\\\\n</template>\\\\n\\\",\\\"title\\\":\\\"站群配置\\\",\\\"script\\\":\\\"\\\\n\\\\nvar custom_model = Vue.component(\\\\\\\"custom-model\\\\\\\",{\\\\nel: \'#custom-model\',\\\\ndata:function() {\\\\nreturn {\\\\n\\\\nmodelId:0,\\\\nmodelName: \\\\\\\"站群配置\\\\\\\",\\\\n//表单数据\\\\nform: {\\\\nlinkId:0,\\\\n // 启用站群\\\\n siteEnable:false,\\\\n // 站群涉及表\\\\n siteTabes:\'cms_content,cms_category\',\\\\n},\\\\n\\\\nrules:{\\\\n},\\\\n}\\\\n},\\\\nwatch:{\\\\n \\\\n //启用站群 \\\\n \\\\\\\"form.siteEnable\\\\\\\":function(nev,old){\\\\n if(typeof(nev)==\'string\') {\\\\n this.form.siteEnable = (nev==\'true\');\\\\n } \\\\n },\\\\n},\\\\ncomputed:{\\\\n},\\\\nmethods: {\\\\nvalidate:function(){\\\\nvar b = false\\\\nthis.$refs.form.validate(function(valid){\\\\nb = valid;\\\\n});\\\\nreturn b;\\\\n},\\\\nsave:function(callback) {\\\\nvar that = this;\\\\nvar url = this.formURL.save.url;\\\\nif (that.form.id > 0) {\\\\nurl = this.formURL.update.url;\\\\n}\\\\nthis.$refs.form.validate(function(valid) {\\\\nif (valid) {\\\\nvar form = JSON.parse(JSON.stringify(that.form));\\\\nform.modelId = that.modelId;\\\\nms.http.post(url, form).then(function (res) {\\\\nif(callback) {\\\\ncallback(res);\\\\n}\\\\n});\\\\n}else{\\\\ncallback({result:false,msg:\'请检查表单输入项\'});\\\\n}\\\\n})\\\\n},\\\\n//获取当前站群配置\\\\nget:function(id) {\\\\nvar that = this;\\\\nms.http.get(this.formURL.get.url, Object.assign({\\\\\\\"modelId\\\\\\\":that.modelId},this.formURL.get.params)).then(function (res) {\\\\nif(res.result&&res.data){\\\\nthat.form = res.data;\\\\n}\\\\n}).catch(function (err) {\\\\nconsole.log(err);\\\\n});\\\\n},\\\\n\\\\n},\\\\ncreated:function() {\\\\n//渲染create\\\\n\\\\nthis.get(this.form.linkId);\\\\n}\\\\n})', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/form/importJson.do', 'POST', 'net.mingsoft.mdiy.action.FormAction.importJson()', '192.168.0.233', '导入', NULL, NULL, '2022-02-28 10:10:55', NULL, 0);
  321. INSERT INTO `logger` VALUES (1498118545183531010, NULL, '{\n \"result\":false,\n \"msg\":\"自定义表名已存在!\",\n \"code\":500\n}', '{\n \"id\":[\"\"],\n \"modelJson\":[\"{\\\"searchJson\\\":\\\"[\\\\n // 启用站群\\\\n {\'action\':\'and\', \'field\': \'SITE_ENABLE\', \'el\': \'eq\', \'model\': \'siteEnable\', \'name\': \'启用站群\', \'type\': \'switch\'},\\\\n // 站群涉及表\\\\n {\'action\':\'and\', \'field\': \'SITE_TABES\', \'el\': \'eq\', \'model\': \'siteTabes\', \'name\': \'站群涉及表\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\\"field\\\":\\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteEnable\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"Boolean\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"启用站群\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"switch\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"11\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteTabes\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"站群涉及表\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\\"html\\\":\\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--启用站群-->\\\\n \\\\n <el-form-item label=\\\\\\\"启用站群\\\\\\\" prop=\\\\\\\"siteEnable\\\\\\\">\\\\n <el-switch v-model=\\\\\\\"form.siteEnable\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\">\\\\n </el-switch>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n建议系统初始化时候决定是否启用<br/>\\\\n注:修改后需要重启系统生效 </div>\\\\n </el-form-item>\\\\n \\\\n <!--站群涉及表-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"站群涉及表\\\\\\\" prop=\\\\\\\"siteTabes\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.siteTabes\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入站群涉及表\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n多个表逗号,分割,表中必须存在APP_ID字段<br/>\\\\n注:表有改动需要重新在站点管理初始化APPID </div>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n </el-form>\\\\n</template>\\\\n\\\",\\\"title\\\":\\\"站群配置\\\",\\\"script\\\":\\\"\\\\n\\\\nvar custom_model = Vue.component(\\\\\\\"custom-model\\\\\\\",{\\\\nel: \'#custom-model\',\\\\ndata:function() {\\\\nreturn {\\\\n\\\\nmodelId:0,\\\\nmodelName: \\\\\\\"站群配置\\\\\\\",\\\\n//表单数据\\\\nform: {\\\\nlinkId:0,\\\\n // 启用站群\\\\n siteEnable:false,\\\\n // 站群涉及表\\\\n siteTabes:\'cms_content,cms_category\',\\\\n},\\\\n\\\\nrules:{\\\\n},\\\\n}\\\\n},\\\\nwatch:{\\\\n \\\\n //启用站群 \\\\n \\\\\\\"form.siteEnable\\\\\\\":function(nev,old){\\\\n if(typeof(nev)==\'string\') {\\\\n this.form.siteEnable = (nev==\'true\');\\\\n } \\\\n },\\\\n},\\\\ncomputed:{\\\\n},\\\\nmethods: {\\\\nvalidate:function(){\\\\nvar b = false\\\\nthis.$refs.form.validate(function(valid){\\\\nb = valid;\\\\n});\\\\nreturn b;\\\\n},\\\\nsave:function(callback) {\\\\nvar that = this;\\\\nvar url = this.formURL.save.url;\\\\nif (that.form.id > 0) {\\\\nurl = this.formURL.update.url;\\\\n}\\\\nthis.$refs.form.validate(function(valid) {\\\\nif (valid) {\\\\nvar form = JSON.parse(JSON.stringify(that.form));\\\\nform.modelId = that.modelId;\\\\nms.http.post(url, form).then(function (res) {\\\\nif(callback) {\\\\ncallback(res);\\\\n}\\\\n});\\\\n}else{\\\\ncallback({result:false,msg:\'请检查表单输入项\'});\\\\n}\\\\n})\\\\n},\\\\n//获取当前站群配置\\\\nget:function(id) {\\\\nvar that = this;\\\\nms.http.get(this.formURL.get.url, Object.assign({\\\\\\\"modelId\\\\\\\":that.modelId},this.formURL.get.params)).then(function (res) {\\\\nif(res.result&&res.data){\\\\nthat.form = res.data;\\\\n}\\\\n}).catch(function (err) {\\\\nconsole.log(err);\\\\n});\\\\n},\\\\n\\\\n},\\\\ncreated:function() {\\\\n//渲染create\\\\n\\\\nthis.get(this.form.linkId);\\\\n}\\\\n})', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/form/importJson.do', 'POST', 'net.mingsoft.mdiy.action.FormAction.importJson()', '192.168.0.233', '导入', NULL, NULL, '2022-02-28 10:11:10', NULL, 0);
  322. INSERT INTO `logger` VALUES (1498118555803508737, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"del\":0,\n \"fieldMap\":{\n \"siteEnable\":\"SITE_ENABLE\",\n \"siteTabes\":\"SITE_TABES\"\n },\n \"formUrl\":\"5c1a7efa63d2f2fdb3531f1a04706f36\",\n \"id\":\"21\",\n \"modelCustomType\":\"post\",\n \"modelField\":\"[\\n {\\n \\\"model\\\":\\\"siteEnable\\\",\\n \\\"key\\\":\\\"SITE_ENABLE\\\",\\n \\\"field\\\":\\\"SITE_ENABLE\\\",\\n \\\"javaType\\\":\\\"Boolean\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"启用站群\\\",\\n \\\"type\\\":\\\"switch\\\",\\n \\\"length\\\":\\\"11\\\",\\n \\\"isShow\\\":\\\"false\\\"\\n }\\n ,{\\n \\\"model\\\":\\\"siteTabes\\\",\\n \\\"key\\\":\\\"SITE_TABES\\\",\\n \\\"field\\\":\\\"SITE_TABES\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"站群涉及表\\\",\\n \\\"type\\\":\\\"textarea\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"false\\\"\\n }\\n]\\n\\n\",\n \"modelJson\":\"{\\\"searchJson\\\":\\\"[\\\\n // 启用站群\\\\n {\'action\':\'and\', \'field\': \'SITE_ENABLE\', \'el\': \'eq\', \'model\': \'siteEnable\', \'name\': \'启用站群\', \'type\': \'switch\'},\\\\n // 站群涉及表\\\\n {\'action\':\'and\', \'field\': \'SITE_TABES\', \'el\': \'eq\', \'model\': \'siteTabes\', \'name\': \'站群涉及表\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\\"isWebSubmit\\\":false,\\\"html\\\":\\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--启用站群-->\\\\n \\\\n <el-form-item label=\\\\\\\"启用站群\\\\\\\" prop=\\\\\\\"siteEnable\\\\\\\">\\\\n <el-switch v-model=\\\\\\\"form.siteEnable\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\">\\\\n </el-switch>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n建议系统初始化时候决定是否启用<br/>\\\\n注:修改后需要重启系统生效 </div>\\\\n </el-form-item>\\\\n \\\\n <!--站群涉及表-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"站群涉及表\\\\\\\" prop=\\\\\\\"siteTabes\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.siteTabes\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入站群涉及表\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n多个表逗号,分割,表中必须存在APP_ID字段<br/>\\\\n注:表有改动需要重新在站点管理初始化APPID </div>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n </el-form>\\\\n</template>\\\\n\\\",\\\"script\\\":\\\"\\\\n\\\\nvar custom_model = Vue.component(\\\\\\\"custom-model\\\\\\\",{\\\\nel: \'#custom-model\',\\\\ndata:function() {\\\\nreturn {\\\\n\\\\nmodelId:0,\\\\nmodelName: \\\\\\\"站群配置\\\\\\\",\\\\n//表单数据\\\\nform: {\\\\nlinkId:0,\\\\n // 启用站群\\\\n siteEnable:false,\\\\n // 站群涉及表\\\\n siteTabes:\'cms_content,cms_category\',\\\\n},\\\\n\\\\nrules:{\\\\n},\\\\n}\\\\n},\\\\nwatch:{\\\\n \\\\n //启用站群 \\\\n \\\\\\\"form.siteEnable\\\\\\\":function(nev,old){\\\\n if(typeof(nev)==\'string\') {\\\\n this.form.siteEnable = (nev==\'true\');\\\\n } \\\\n },\\\\n},\\\\ncomputed:{\\\\n},\\\\nmethods: {\\\\nvalidate:function(){\\\\nvar b = false\\\\nthis.$refs.form.validate(function(valid){\\\\nb = valid;\\\\n});\\\\nreturn b;\\\\n},\\\\nsave:function(callback) {\\\\nvar that = this;\\\\nvar url = this.formURL.save.url;\\\\nif (that.form.id > 0) {\\\\nurl = this.formURL.update.url;\\\\n}\\\\nthis.$refs.form.validate(function(valid) {\\\\nif (valid) {\\\\nvar form = JSON.parse(JSON.stringify(that.form));\\\\nform.modelId = that.modelId;\\\\nms.http.post(url, form).then(function (res) {\\\\nif(callback) {\\\\ncallback(res);\\\\n}\\\\n});\\\\n}else{\\\\ncallback({result:false,msg:\'请检查表单输入项\'});\\\\n}\\\\n})\\\\n},\\\\n//获取当前站群配置\\\\nget:function(id) {\\\\nvar that = this;\\\\nms.http.get(this.formURL.get.url, Object.assign({\\\\\\\"modelId\\\\\\\":that.modelId},this.formURL.get.params)).then(function (res) {\\\\nif(res.result&&res.data){\\\\nthat.form = res.data;\\\\n}\\\\n}).catch(function (err) {\\\\nconsole.log(err);\\\\n});\\\\n},\\\\n\\\\n},\\\\ncreated:function() {\\\\n//渲染create\\\\n\\\\nthis.get(this.form.linkId);\\', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/mdiy/form/delete.do', 'POST', 'net.mingsoft.mdiy.action.FormAction.delete()', '192.168.0.233', '批量删除自定义模型列表接口', NULL, NULL, '2022-02-28 10:11:12', NULL, 0);
  323. INSERT INTO `logger` VALUES (1498118579895590914, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"id\":[\"\"],\n \"modelJson\":[\"{\\\"searchJson\\\":\\\"[\\\\n // 启用站群\\\\n {\'action\':\'and\', \'field\': \'SITE_ENABLE\', \'el\': \'eq\', \'model\': \'siteEnable\', \'name\': \'启用站群\', \'type\': \'switch\'},\\\\n // 站群涉及表\\\\n {\'action\':\'and\', \'field\': \'SITE_TABES\', \'el\': \'eq\', \'model\': \'siteTabes\', \'name\': \'站群涉及表\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\\"field\\\":\\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteEnable\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"Boolean\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"启用站群\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"switch\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"11\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteTabes\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"站群涉及表\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\\"html\\\":\\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--启用站群-->\\\\n \\\\n <el-form-item label=\\\\\\\"启用站群\\\\\\\" prop=\\\\\\\"siteEnable\\\\\\\">\\\\n <el-switch v-model=\\\\\\\"form.siteEnable\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\">\\\\n </el-switch>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n建议系统初始化时候决定是否启用<br/>\\\\n注:修改后需要重启系统生效 </div>\\\\n </el-form-item>\\\\n \\\\n <!--站群涉及表-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"站群涉及表\\\\\\\" prop=\\\\\\\"siteTabes\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.siteTabes\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入站群涉及表\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n多个表逗号,分割,表中必须存在APP_ID字段<br/>\\\\n注:表有改动需要重新在站点管理初始化APPID </div>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n </el-form>\\\\n</template>\\\\n\\\",\\\"title\\\":\\\"站群配置\\\",\\\"script\\\":\\\"\\\\n\\\\nvar custom_model = Vue.component(\\\\\\\"custom-model\\\\\\\",{\\\\nel: \'#custom-model\',\\\\ndata:function() {\\\\nreturn {\\\\n\\\\nmodelId:0,\\\\nmodelName: \\\\\\\"站群配置\\\\\\\",\\\\n//表单数据\\\\nform: {\\\\nlinkId:0,\\\\n // 启用站群\\\\n siteEnable:false,\\\\n // 站群涉及表\\\\n siteTabes:\'cms_content,cms_category\',\\\\n},\\\\n\\\\nrules:{\\\\n},\\\\n}\\\\n},\\\\nwatch:{\\\\n \\\\n //启用站群 \\\\n \\\\\\\"form.siteEnable\\\\\\\":function(nev,old){\\\\n if(typeof(nev)==\'string\') {\\\\n this.form.siteEnable = (nev==\'true\');\\\\n } \\\\n },\\\\n},\\\\ncomputed:{\\\\n},\\\\nmethods: {\\\\nvalidate:function(){\\\\nvar b = false\\\\nthis.$refs.form.validate(function(valid){\\\\nb = valid;\\\\n});\\\\nreturn b;\\\\n},\\\\nsave:function(callback) {\\\\nvar that = this;\\\\nvar url = this.formURL.save.url;\\\\nif (that.form.id > 0) {\\\\nurl = this.formURL.update.url;\\\\n}\\\\nthis.$refs.form.validate(function(valid) {\\\\nif (valid) {\\\\nvar form = JSON.parse(JSON.stringify(that.form));\\\\nform.modelId = that.modelId;\\\\nms.http.post(url, form).then(function (res) {\\\\nif(callback) {\\\\ncallback(res);\\\\n}\\\\n});\\\\n}else{\\\\ncallback({result:false,msg:\'请检查表单输入项\'});\\\\n}\\\\n})\\\\n},\\\\n//获取当前站群配置\\\\nget:function(id) {\\\\nvar that = this;\\\\nms.http.get(this.formURL.get.url, Object.assign({\\\\\\\"modelId\\\\\\\":that.modelId},this.formURL.get.params)).then(function (res) {\\\\nif(res.result&&res.data){\\\\nthat.form = res.data;\\\\n}\\\\n}).catch(function (err) {\\\\nconsole.log(err);\\\\n});\\\\n},\\\\n\\\\n},\\\\ncreated:function() {\\\\n//渲染create\\\\n\\\\nthis.get(this.form.linkId);\\\\n}\\\\n})', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/form/importJson.do', 'POST', 'net.mingsoft.mdiy.action.FormAction.importJson()', '192.168.0.233', '导入', NULL, NULL, '2022-02-28 10:11:18', NULL, 0);
  324. INSERT INTO `logger` VALUES (1498118600313462785, NULL, '{\n \"result\":false,\n \"msg\":\"自定义表名已存在!\",\n \"code\":500\n}', '{\n \"id\":[\"\"],\n \"modelJson\":[\"{\\\"searchJson\\\":\\\"[\\\\n // 启用站群\\\\n {\'action\':\'and\', \'field\': \'SITE_ENABLE\', \'el\': \'eq\', \'model\': \'siteEnable\', \'name\': \'启用站群\', \'type\': \'switch\'},\\\\n // 站群涉及表\\\\n {\'action\':\'and\', \'field\': \'SITE_TABES\', \'el\': \'eq\', \'model\': \'siteTabes\', \'name\': \'站群涉及表\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\\"field\\\":\\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteEnable\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"Boolean\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"启用站群\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"switch\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"11\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteTabes\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"站群涉及表\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\\"html\\\":\\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--启用站群-->\\\\n \\\\n <el-form-item label=\\\\\\\"启用站群\\\\\\\" prop=\\\\\\\"siteEnable\\\\\\\">\\\\n <el-switch v-model=\\\\\\\"form.siteEnable\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\">\\\\n </el-switch>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n建议系统初始化时候决定是否启用<br/>\\\\n注:修改后需要重启系统生效 </div>\\\\n </el-form-item>\\\\n \\\\n <!--站群涉及表-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"站群涉及表\\\\\\\" prop=\\\\\\\"siteTabes\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.siteTabes\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入站群涉及表\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n多个表逗号,分割,表中必须存在APP_ID字段<br/>\\\\n注:表有改动需要重新在站点管理初始化APPID </div>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n </el-form>\\\\n</template>\\\\n\\\",\\\"title\\\":\\\"站群配置\\\",\\\"script\\\":\\\"\\\\n\\\\nvar custom_model = Vue.component(\\\\\\\"custom-model\\\\\\\",{\\\\nel: \'#custom-model\',\\\\ndata:function() {\\\\nreturn {\\\\n\\\\nmodelId:0,\\\\nmodelName: \\\\\\\"站群配置\\\\\\\",\\\\n//表单数据\\\\nform: {\\\\nlinkId:0,\\\\n // 启用站群\\\\n siteEnable:false,\\\\n // 站群涉及表\\\\n siteTabes:\'cms_content,cms_category\',\\\\n},\\\\n\\\\nrules:{\\\\n},\\\\n}\\\\n},\\\\nwatch:{\\\\n \\\\n //启用站群 \\\\n \\\\\\\"form.siteEnable\\\\\\\":function(nev,old){\\\\n if(typeof(nev)==\'string\') {\\\\n this.form.siteEnable = (nev==\'true\');\\\\n } \\\\n },\\\\n},\\\\ncomputed:{\\\\n},\\\\nmethods: {\\\\nvalidate:function(){\\\\nvar b = false\\\\nthis.$refs.form.validate(function(valid){\\\\nb = valid;\\\\n});\\\\nreturn b;\\\\n},\\\\nsave:function(callback) {\\\\nvar that = this;\\\\nvar url = this.formURL.save.url;\\\\nif (that.form.id > 0) {\\\\nurl = this.formURL.update.url;\\\\n}\\\\nthis.$refs.form.validate(function(valid) {\\\\nif (valid) {\\\\nvar form = JSON.parse(JSON.stringify(that.form));\\\\nform.modelId = that.modelId;\\\\nms.http.post(url, form).then(function (res) {\\\\nif(callback) {\\\\ncallback(res);\\\\n}\\\\n});\\\\n}else{\\\\ncallback({result:false,msg:\'请检查表单输入项\'});\\\\n}\\\\n})\\\\n},\\\\n//获取当前站群配置\\\\nget:function(id) {\\\\nvar that = this;\\\\nms.http.get(this.formURL.get.url, Object.assign({\\\\\\\"modelId\\\\\\\":that.modelId},this.formURL.get.params)).then(function (res) {\\\\nif(res.result&&res.data){\\\\nthat.form = res.data;\\\\n}\\\\n}).catch(function (err) {\\\\nconsole.log(err);\\\\n});\\\\n},\\\\n\\\\n},\\\\ncreated:function() {\\\\n//渲染create\\\\n\\\\nthis.get(this.form.linkId);\\\\n}\\\\n})', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/form/importJson.do', 'POST', 'net.mingsoft.mdiy.action.FormAction.importJson()', '192.168.0.233', '导入', NULL, NULL, '2022-02-28 10:11:23', NULL, 0);
  325. INSERT INTO `logger` VALUES (1498118610287517698, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"del\":0,\n \"fieldMap\":{\n \"siteEnable\":\"SITE_ENABLE\",\n \"siteTabes\":\"SITE_TABES\"\n },\n \"formUrl\":\"a341e291da99efa7b02ca2a8c86cfba4\",\n \"id\":\"22\",\n \"modelCustomType\":\"post\",\n \"modelField\":\"[\\n {\\n \\\"model\\\":\\\"siteEnable\\\",\\n \\\"key\\\":\\\"SITE_ENABLE\\\",\\n \\\"field\\\":\\\"SITE_ENABLE\\\",\\n \\\"javaType\\\":\\\"Boolean\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"启用站群\\\",\\n \\\"type\\\":\\\"switch\\\",\\n \\\"length\\\":\\\"11\\\",\\n \\\"isShow\\\":\\\"false\\\"\\n }\\n ,{\\n \\\"model\\\":\\\"siteTabes\\\",\\n \\\"key\\\":\\\"SITE_TABES\\\",\\n \\\"field\\\":\\\"SITE_TABES\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"站群涉及表\\\",\\n \\\"type\\\":\\\"textarea\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"false\\\"\\n }\\n]\\n\\n\",\n \"modelJson\":\"{\\\"searchJson\\\":\\\"[\\\\n // 启用站群\\\\n {\'action\':\'and\', \'field\': \'SITE_ENABLE\', \'el\': \'eq\', \'model\': \'siteEnable\', \'name\': \'启用站群\', \'type\': \'switch\'},\\\\n // 站群涉及表\\\\n {\'action\':\'and\', \'field\': \'SITE_TABES\', \'el\': \'eq\', \'model\': \'siteTabes\', \'name\': \'站群涉及表\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\\"isWebSubmit\\\":false,\\\"html\\\":\\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--启用站群-->\\\\n \\\\n <el-form-item label=\\\\\\\"启用站群\\\\\\\" prop=\\\\\\\"siteEnable\\\\\\\">\\\\n <el-switch v-model=\\\\\\\"form.siteEnable\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\">\\\\n </el-switch>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n建议系统初始化时候决定是否启用<br/>\\\\n注:修改后需要重启系统生效 </div>\\\\n </el-form-item>\\\\n \\\\n <!--站群涉及表-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"站群涉及表\\\\\\\" prop=\\\\\\\"siteTabes\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.siteTabes\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入站群涉及表\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n多个表逗号,分割,表中必须存在APP_ID字段<br/>\\\\n注:表有改动需要重新在站点管理初始化APPID </div>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n </el-form>\\\\n</template>\\\\n\\\",\\\"script\\\":\\\"\\\\n\\\\nvar custom_model = Vue.component(\\\\\\\"custom-model\\\\\\\",{\\\\nel: \'#custom-model\',\\\\ndata:function() {\\\\nreturn {\\\\n\\\\nmodelId:0,\\\\nmodelName: \\\\\\\"站群配置\\\\\\\",\\\\n//表单数据\\\\nform: {\\\\nlinkId:0,\\\\n // 启用站群\\\\n siteEnable:false,\\\\n // 站群涉及表\\\\n siteTabes:\'cms_content,cms_category\',\\\\n},\\\\n\\\\nrules:{\\\\n},\\\\n}\\\\n},\\\\nwatch:{\\\\n \\\\n //启用站群 \\\\n \\\\\\\"form.siteEnable\\\\\\\":function(nev,old){\\\\n if(typeof(nev)==\'string\') {\\\\n this.form.siteEnable = (nev==\'true\');\\\\n } \\\\n },\\\\n},\\\\ncomputed:{\\\\n},\\\\nmethods: {\\\\nvalidate:function(){\\\\nvar b = false\\\\nthis.$refs.form.validate(function(valid){\\\\nb = valid;\\\\n});\\\\nreturn b;\\\\n},\\\\nsave:function(callback) {\\\\nvar that = this;\\\\nvar url = this.formURL.save.url;\\\\nif (that.form.id > 0) {\\\\nurl = this.formURL.update.url;\\\\n}\\\\nthis.$refs.form.validate(function(valid) {\\\\nif (valid) {\\\\nvar form = JSON.parse(JSON.stringify(that.form));\\\\nform.modelId = that.modelId;\\\\nms.http.post(url, form).then(function (res) {\\\\nif(callback) {\\\\ncallback(res);\\\\n}\\\\n});\\\\n}else{\\\\ncallback({result:false,msg:\'请检查表单输入项\'});\\\\n}\\\\n})\\\\n},\\\\n//获取当前站群配置\\\\nget:function(id) {\\\\nvar that = this;\\\\nms.http.get(this.formURL.get.url, Object.assign({\\\\\\\"modelId\\\\\\\":that.modelId},this.formURL.get.params)).then(function (res) {\\\\nif(res.result&&res.data){\\\\nthat.form = res.data;\\\\n}\\\\n}).catch(function (err) {\\\\nconsole.log(err);\\\\n});\\\\n},\\\\n\\\\n},\\\\ncreated:function() {\\\\n//渲染create\\\\n\\\\nthis.get(this.form.linkId);\\', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/mdiy/form/delete.do', 'POST', 'net.mingsoft.mdiy.action.FormAction.delete()', '192.168.0.233', '批量删除自定义模型列表接口', NULL, NULL, '2022-02-28 10:11:25', NULL, 0);
  326. INSERT INTO `logger` VALUES (1498118682622484481, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"id\":[\"17\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n // 启用站群\\\\n {\'action\':\'and\', \'field\': \'SITE_ENABLE\', \'el\': \'eq\', \'model\': \'siteEnable\', \'name\': \'启用站群\', \'type\': \'switch\'},\\\\n // 站群涉及表\\\\n {\'action\':\'and\', \'field\': \'SITE_TABES\', \'el\': \'eq\', \'model\': \'siteTabes\', \'name\': \'站群涉及表\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteEnable\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"Boolean\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"启用站群\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"switch\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"11\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteTabes\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"站群涉及表\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--启用站群-->\\\\n \\\\n <el-form-item label=\\\\\\\"启用站群\\\\\\\" prop=\\\\\\\"siteEnable\\\\\\\">\\\\n <el-switch v-model=\\\\\\\"form.siteEnable\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\">\\\\n </el-switch>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n建议系统初始化时候决定是否启用<br/>\\\\n注:修改后需要重启系统生效 </div>\\\\n </el-form-item>\\\\n \\\\n <!--站群涉及表-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"站群涉及表\\\\\\\" prop=\\\\\\\"siteTabes\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.siteTabes\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入站群涉及表\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n多个表逗号,分割,表中必须存在APP_ID字段<br/>\\\\n注:表有改动需要重新在站点管理初始化APPID </div>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n </el-form>\\\\n</template>\\\\n\\\",\\n \\\"title\\\": \\\"站群配置\\\",\\n \\\"script\\\": \\\"\\\\n\\\\nvar custom_model = Vue.component(\\\\\\\"custom-model\\\\\\\",{\\\\nel: \'#custom-model\',\\\\ndata:function() {\\\\nreturn {\\\\n\\\\nmodelId:0,\\\\nmodelName: \\\\\\\"站群配置\\\\\\\",\\\\n//表单数据\\\\nform: {\\\\nlinkId:0,\\\\n // 启用站群\\\\n siteEnable:false,\\\\n // 站群涉及表\\\\n siteTabes:\'cms_content,cms_category\',\\\\n},\\\\n\\\\nrules:{\\\\n},\\\\n}\\\\n},\\\\nwatch:{\\\\n \\\\n //启用站群 \\\\n \\\\\\\"form.siteEnable\\\\\\\":function(nev,old){\\\\n if(typeof(nev)==\'string\') {\\\\n this.form.siteEnable = (nev==\'true\');\\\\n } \\\\n },\\\\n},\\\\ncomputed:{\\\\n},\\\\nmethods: {\\\\nvalidate:function(){\\\\nvar b = false\\\\nthis.$refs.form.validate(function(valid){\\\\nb = valid;\\\\n});\\\\nreturn b;\\\\n},\\\\nsave:function(callback) {\\\\nvar that = this;\\\\nvar url = this.formURL.save.url;\\\\nif (that.form.id > 0) {\\\\nurl = this.formURL.update.url;\\\\n}\\\\nthis.$refs.form.validate(function(valid) {\\\\nif (valid) {\\\\nvar form = JSON.parse(JSON.stringify(that.form));\\\\nform.modelId = that.modelId;\\\\nms.http.post(url, form).then(function (res) {\\\\nif(callback) {\\\\ncallback(res);\\\\n}\\\\n});\\\\n}else{\\\\ncallback({result:false,msg:\'请检查表单输入项\'});\\\\n}\\\\n})\\\\n},\\\\n//获取当前站群配置\\\\nget:function(id) {\\\\nvar that = this;\\\\nms.http.get(this.formURL.get.url, Object.assign({\\\\\\\"modelId\\\\\\\":that.modelId},this.formURL.get.params)).then(function (res) {\\\\nif(res.result&&res.data){\\\\nthat.form = res.data;\\\\n}\\\\n}).catch(function (err) {\\\\nconsole.log(err);\\\\n});\\\\n},\\\\n\\\\n},\\\\ncreated:function() {\\\\n//渲染create\\\\n\\\\nthis.get(', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/config/updateJson.do', 'POST', 'net.mingsoft.mdiy.action.ConfigAction.updateJson()', '192.168.0.233', '导入', NULL, NULL, '2022-02-28 10:11:42', NULL, 0);
  327. INSERT INTO `logger` VALUES (1498118708149018626, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"id\":[\"20\"],\n \"modelType\":[\"cms\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n // 启用站群\\\\n {\'action\':\'and\', \'field\': \'SITE_ENABLE\', \'el\': \'eq\', \'model\': \'siteEnable\', \'name\': \'启用站群\', \'type\': \'switch\'},\\\\n // 站群涉及表\\\\n {\'action\':\'and\', \'field\': \'SITE_TABES\', \'el\': \'eq\', \'model\': \'siteTabes\', \'name\': \'站群涉及表\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteEnable\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"Boolean\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"启用站群\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"switch\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"11\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteTabes\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"站群涉及表\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--启用站群-->\\\\n \\\\n <el-form-item label=\\\\\\\"启用站群\\\\\\\" prop=\\\\\\\"siteEnable\\\\\\\">\\\\n <el-switch v-model=\\\\\\\"form.siteEnable\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\">\\\\n </el-switch>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n建议系统初始化时候决定是否启用<br/>\\\\n注:修改后需要重启系统生效 </div>\\\\n </el-form-item>\\\\n \\\\n <!--站群涉及表-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"站群涉及表\\\\\\\" prop=\\\\\\\"siteTabes\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.siteTabes\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入站群涉及表\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n多个表逗号,分割,表中必须存在APP_ID字段<br/>\\\\n注:表有改动需要重新在站点管理初始化APPID </div>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n </el-form>\\\\n</template>\\\\n\\\",\\n \\\"title\\\": \\\"站群配置\\\",\\n \\\"script\\\": \\\"\\\\n\\\\nvar custom_model = Vue.component(\\\\\\\"custom-model\\\\\\\",{\\\\nel: \'#custom-model\',\\\\ndata:function() {\\\\nreturn {\\\\n\\\\nmodelId:0,\\\\nmodelName: \\\\\\\"站群配置\\\\\\\",\\\\n//表单数据\\\\nform: {\\\\nlinkId:0,\\\\n // 启用站群\\\\n siteEnable:false,\\\\n // 站群涉及表\\\\n siteTabes:\'cms_content,cms_category\',\\\\n},\\\\n\\\\nrules:{\\\\n},\\\\n}\\\\n},\\\\nwatch:{\\\\n \\\\n //启用站群 \\\\n \\\\\\\"form.siteEnable\\\\\\\":function(nev,old){\\\\n if(typeof(nev)==\'string\') {\\\\n this.form.siteEnable = (nev==\'true\');\\\\n } \\\\n },\\\\n},\\\\ncomputed:{\\\\n},\\\\nmethods: {\\\\nvalidate:function(){\\\\nvar b = false\\\\nthis.$refs.form.validate(function(valid){\\\\nb = valid;\\\\n});\\\\nreturn b;\\\\n},\\\\nsave:function(callback) {\\\\nvar that = this;\\\\nvar url = this.formURL.save.url;\\\\nif (that.form.id > 0) {\\\\nurl = this.formURL.update.url;\\\\n}\\\\nthis.$refs.form.validate(function(valid) {\\\\nif (valid) {\\\\nvar form = JSON.parse(JSON.stringify(that.form));\\\\nform.modelId = that.modelId;\\\\nms.http.post(url, form).then(function (res) {\\\\nif(callback) {\\\\ncallback(res);\\\\n}\\\\n});\\\\n}else{\\\\ncallback({result:false,msg:\'请检查表单输入项\'});\\\\n}\\\\n})\\\\n},\\\\n//获取当前站群配置\\\\nget:function(id) {\\\\nvar that = this;\\\\nms.http.get(this.formURL.get.url, Object.assign({\\\\\\\"modelId\\\\\\\":that.modelId},this.formURL.get.params)).then(function (res) {\\\\nif(res.result&&res.data){\\\\nthat.form = res.data;\\\\n}\\\\n}).catch(function (err) {\\\\nconsole.log(err);\\\\n});\\\\n},\\\\n\\\\n},\\\\ncreated:function() {\\\\n//渲', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/model/updateJson.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.updateJson()', '192.168.0.233', '更新自定义模型', NULL, NULL, '2022-02-28 10:11:48', NULL, 0);
  328. INSERT INTO `logger` VALUES (1498118728646582273, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"del\":0,\n \"fieldMap\":{\n \"siteEnable\":\"SITE_ENABLE\",\n \"siteTabes\":\"SITE_TABES\"\n },\n \"formUrl\":\"dac3974ff0d89eaa74bd4b527769f027\",\n \"id\":\"20\",\n \"modelCustomType\":\"model\",\n \"modelField\":\"[\\n {\\n \\\"model\\\":\\\"siteEnable\\\",\\n \\\"key\\\":\\\"SITE_ENABLE\\\",\\n \\\"field\\\":\\\"SITE_ENABLE\\\",\\n \\\"javaType\\\":\\\"Boolean\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"启用站群\\\",\\n \\\"type\\\":\\\"switch\\\",\\n \\\"length\\\":\\\"11\\\",\\n \\\"isShow\\\":\\\"false\\\"\\n }\\n ,{\\n \\\"model\\\":\\\"siteTabes\\\",\\n \\\"key\\\":\\\"SITE_TABES\\\",\\n \\\"field\\\":\\\"SITE_TABES\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"站群涉及表\\\",\\n \\\"type\\\":\\\"textarea\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"false\\\"\\n }\\n]\\n\\n\",\n \"modelJson\":\"{\\\"searchJson\\\":\\\"[\\\\n // 启用站群\\\\n {\'action\':\'and\', \'field\': \'SITE_ENABLE\', \'el\': \'eq\', \'model\': \'siteEnable\', \'name\': \'启用站群\', \'type\': \'switch\'},\\\\n // 站群涉及表\\\\n {\'action\':\'and\', \'field\': \'SITE_TABES\', \'el\': \'eq\', \'model\': \'siteTabes\', \'name\': \'站群涉及表\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\\"isWebSubmit\\\":false,\\\"html\\\":\\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--启用站群-->\\\\n \\\\n <el-form-item label=\\\\\\\"启用站群\\\\\\\" prop=\\\\\\\"siteEnable\\\\\\\">\\\\n <el-switch v-model=\\\\\\\"form.siteEnable\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\">\\\\n </el-switch>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n建议系统初始化时候决定是否启用<br/>\\\\n注:修改后需要重启系统生效 </div>\\\\n </el-form-item>\\\\n \\\\n <!--站群涉及表-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"站群涉及表\\\\\\\" prop=\\\\\\\"siteTabes\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.siteTabes\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入站群涉及表\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n多个表逗号,分割,表中必须存在APP_ID字段<br/>\\\\n注:表有改动需要重新在站点管理初始化APPID </div>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n </el-form>\\\\n</template>\\\\n\\\",\\\"script\\\":\\\"\\\\n\\\\nvar custom_model = Vue.component(\\\\\\\"custom-model\\\\\\\",{\\\\nel: \'#custom-model\',\\\\ndata:function() {\\\\nreturn {\\\\n\\\\nmodelId:0,\\\\nmodelName: \\\\\\\"站群配置\\\\\\\",\\\\n//表单数据\\\\nform: {\\\\nlinkId:0,\\\\n // 启用站群\\\\n siteEnable:false,\\\\n // 站群涉及表\\\\n siteTabes:\'cms_content,cms_category\',\\\\n},\\\\n\\\\nrules:{\\\\n},\\\\n}\\\\n},\\\\nwatch:{\\\\n \\\\n //启用站群 \\\\n \\\\\\\"form.siteEnable\\\\\\\":function(nev,old){\\\\n if(typeof(nev)==\'string\') {\\\\n this.form.siteEnable = (nev==\'true\');\\\\n } \\\\n },\\\\n},\\\\ncomputed:{\\\\n},\\\\nmethods: {\\\\nvalidate:function(){\\\\nvar b = false\\\\nthis.$refs.form.validate(function(valid){\\\\nb = valid;\\\\n});\\\\nreturn b;\\\\n},\\\\nsave:function(callback) {\\\\nvar that = this;\\\\nvar url = this.formURL.save.url;\\\\nif (that.form.id > 0) {\\\\nurl = this.formURL.update.url;\\\\n}\\\\nthis.$refs.form.validate(function(valid) {\\\\nif (valid) {\\\\nvar form = JSON.parse(JSON.stringify(that.form));\\\\nform.modelId = that.modelId;\\\\nms.http.post(url, form).then(function (res) {\\\\nif(callback) {\\\\ncallback(res);\\\\n}\\\\n});\\\\n}else{\\\\ncallback({result:false,msg:\'请检查表单输入项\'});\\\\n}\\\\n})\\\\n},\\\\n//获取当前站群配置\\\\nget:function(id) {\\\\nvar that = this;\\\\nms.http.get(this.formURL.get.url, Object.assign({\\\\\\\"modelId\\\\\\\":that.modelId},this.formURL.get.params)).then(function (res) {\\\\nif(res.result&&res.data){\\\\nthat.form = res.data;\\\\n}\\\\n}).catch(function (err) {\\\\nconsole.log(err);\\\\n});\\\\n},\\\\n\\\\n},\\\\ncreated:function() {\\\\n//渲染create\\\\n\\\\nthis.get(this.form.linkId);', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/mdiy/model/delete.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.delete()', '192.168.0.233', '批量删除自定义模型', NULL, NULL, '2022-02-28 10:11:53', NULL, 0);
  329. INSERT INTO `logger` VALUES (1498118745289580545, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"del\":0,\n \"fieldMap\":{\n \"siteEnable\":\"SITE_ENABLE\",\n \"siteTabes\":\"SITE_TABES\"\n },\n \"formUrl\":\"6704ad98fabf599559f0898f8d8245e3\",\n \"id\":\"17\",\n \"modelCustomType\":\"config\",\n \"modelField\":\"[\\n {\\n \\\"model\\\":\\\"siteEnable\\\",\\n \\\"key\\\":\\\"SITE_ENABLE\\\",\\n \\\"field\\\":\\\"SITE_ENABLE\\\",\\n \\\"javaType\\\":\\\"Boolean\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"启用站群\\\",\\n \\\"type\\\":\\\"switch\\\",\\n \\\"length\\\":\\\"11\\\",\\n \\\"isShow\\\":\\\"false\\\"\\n }\\n ,{\\n \\\"model\\\":\\\"siteTabes\\\",\\n \\\"key\\\":\\\"SITE_TABES\\\",\\n \\\"field\\\":\\\"SITE_TABES\\\",\\n \\\"javaType\\\":\\\"String\\\",\\n \\\"jdbcType\\\":\\\"VARCHAR\\\",\\n \\\"name\\\":\\\"站群涉及表\\\",\\n \\\"type\\\":\\\"textarea\\\",\\n \\\"length\\\":\\\"255\\\",\\n \\\"isShow\\\":\\\"false\\\"\\n }\\n]\\n\\n\",\n \"modelJson\":\"{\\\"searchJson\\\":\\\"[\\\\n // 启用站群\\\\n {\'action\':\'and\', \'field\': \'SITE_ENABLE\', \'el\': \'eq\', \'model\': \'siteEnable\', \'name\': \'启用站群\', \'type\': \'switch\'},\\\\n // 站群涉及表\\\\n {\'action\':\'and\', \'field\': \'SITE_TABES\', \'el\': \'eq\', \'model\': \'siteTabes\', \'name\': \'站群涉及表\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\\"isWebSubmit\\\":false,\\\"html\\\":\\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--启用站群-->\\\\n \\\\n <el-form-item label=\\\\\\\"启用站群\\\\\\\" prop=\\\\\\\"siteEnable\\\\\\\">\\\\n <el-switch v-model=\\\\\\\"form.siteEnable\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\">\\\\n </el-switch>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n建议系统初始化时候决定是否启用<br/>\\\\n注:修改后需要重启系统生效 </div>\\\\n </el-form-item>\\\\n \\\\n <!--站群涉及表-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"站群涉及表\\\\\\\" prop=\\\\\\\"siteTabes\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.siteTabes\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入站群涉及表\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n多个表逗号,分割,表中必须存在APP_ID字段<br/>\\\\n注:表有改动需要重新在站点管理初始化APPID </div>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n </el-form>\\\\n</template>\\\\n\\\",\\\"script\\\":\\\"\\\\n\\\\nvar custom_model = Vue.component(\\\\\\\"custom-model\\\\\\\",{\\\\nel: \'#custom-model\',\\\\ndata:function() {\\\\nreturn {\\\\n\\\\nmodelId:0,\\\\nmodelName: \\\\\\\"站群配置\\\\\\\",\\\\n//表单数据\\\\nform: {\\\\nlinkId:0,\\\\n // 启用站群\\\\n siteEnable:false,\\\\n // 站群涉及表\\\\n siteTabes:\'cms_content,cms_category\',\\\\n},\\\\n\\\\nrules:{\\\\n},\\\\n}\\\\n},\\\\nwatch:{\\\\n \\\\n //启用站群 \\\\n \\\\\\\"form.siteEnable\\\\\\\":function(nev,old){\\\\n if(typeof(nev)==\'string\') {\\\\n this.form.siteEnable = (nev==\'true\');\\\\n } \\\\n },\\\\n},\\\\ncomputed:{\\\\n},\\\\nmethods: {\\\\nvalidate:function(){\\\\nvar b = false\\\\nthis.$refs.form.validate(function(valid){\\\\nb = valid;\\\\n});\\\\nreturn b;\\\\n},\\\\nsave:function(callback) {\\\\nvar that = this;\\\\nvar url = this.formURL.save.url;\\\\nif (that.form.id > 0) {\\\\nurl = this.formURL.update.url;\\\\n}\\\\nthis.$refs.form.validate(function(valid) {\\\\nif (valid) {\\\\nvar form = JSON.parse(JSON.stringify(that.form));\\\\nform.modelId = that.modelId;\\\\nms.http.post(url, form).then(function (res) {\\\\nif(callback) {\\\\ncallback(res);\\\\n}\\\\n});\\\\n}else{\\\\ncallback({result:false,msg:\'请检查表单输入项\'});\\\\n}\\\\n})\\\\n},\\\\n//获取当前站群配置\\\\nget:function(id) {\\\\nvar that = this;\\\\nms.http.get(this.formURL.get.url, Object.assign({\\\\\\\"modelId\\\\\\\":that.modelId},this.formURL.get.params)).then(function (res) {\\\\nif(res.result&&res.data){\\\\nthat.form = res.data;\\\\n}\\\\n}).catch(function (err) {\\\\nconsole.log(err);\\\\n});\\\\n},\\\\n\\\\n},\\\\ncreated:function() {\\\\n//渲染create\\\\n\\\\nthis.get(this.form.linkId)', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/mdiy/config/delete.do', 'POST', 'net.mingsoft.mdiy.action.ConfigAction.delete()', '192.168.0.233', '批量删除自定义模型列表接口', NULL, NULL, '2022-02-28 10:11:57', NULL, 0);
  330. INSERT INTO `logger` VALUES (1498119586855706626, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"categoryId\":\"1329357285870346241\",\n \"contentAuthor\":\"\",\n \"contentDatetime\":\"2022-02-28 09:46:30\",\n \"contentDescription\":\"\",\n \"contentDetails\":\"<p><img src=\\\"/upload/1/cms/content/editor/1646012801102.jpg\\\" title=\\\"1646012801102.jpg\\\" alt=\\\"1633935043460.jpg\\\"/></p>\",\n \"contentDisplay\":\"0\",\n \"contentHit\":0,\n \"contentImg\":\"[]\",\n \"contentKeyword\":\"\",\n \"contentSort\":0,\n \"contentSource\":\"\",\n \"contentTitle\":\"测试\",\n \"contentType\":\"\",\n \"contentUrl\":\"\",\n \"createBy\":\"57\",\n \"createDate\":\"2022-02-28 09:46:49\",\n \"del\":0,\n \"id\":\"1498112419771637762\",\n \"sqlWhereList\":[],\n \"updateBy\":\"57\",\n \"updateDate\":\"2022-02-28 09:54:51\"\n }\n]', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/cms/content/delete.do', 'POST', 'net.mingsoft.cms.action.ContentAction.delete()', '192.168.0.233', '删除文章', NULL, NULL, '2022-02-28 10:15:18', NULL, 0);
  331. INSERT INTO `logger` VALUES (1498119898102423553, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"1498119897917874177\"\n }\n}', '{\n \"categoryTitle\":[\"测试栏目\"],\n \"categoryId\":[\"\"],\n \"categoryType\":[\"1\"],\n \"categorySort\":[\"0\"],\n \"categoryListUrl\":[\"about.htm\"],\n \"categoryUrl\":[\"about.htm\"],\n \"categoryPinyin\":[\"\"],\n \"categoryKeyword\":[\"\"],\n \"categoryDescrip\":[\"\"],\n \"categoryImg\":[\"[]\"],\n \"categoryDiyUrl\":[\"\"],\n \"mdiyModelId\":[\"\"],\n \"categoryFlag\":[\"\"],\n \"id\":[\"\"],\n \"childId\":[\"\"]\n}', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/cms/category/save.do', 'POST', 'net.mingsoft.cms.action.CategoryAction.save()', '192.168.0.233', '保存分类', NULL, NULL, '2022-02-28 10:16:32', NULL, 0);
  332. INSERT INTO `logger` VALUES (1498120162049974273, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"1498120161911562241\"\n }\n}', '{\n \"contentTitle\":[\"凑人数\"],\n \"categoryId\":[\"1498119897917874177\"],\n \"contentType\":[\"\"],\n \"contentDisplay\":[\"0\"],\n \"contentAuthor\":[\"\"],\n \"contentSource\":[\"\"],\n \"contentSort\":[\"0\"],\n \"contentImg\":[\"[]\"],\n \"contentDescription\":[\"\"],\n \"contentKeyword\":[\"\"],\n \"contentDetails\":[\"<p>VR的<img src=\\\"/upload/1/cms/content/editor/1646014637116.jpg\\\" title=\\\"1646014637116.jpg\\\" alt=\\\"1633935043460.jpg\\\"/></p>\"],\n \"contentDatetime\":[\"2022-02-28 10:17:08\"],\n \"id\":[\"\"]\n}', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/cms/content/save.do', 'POST', 'net.mingsoft.cms.action.ContentAction.save()', '192.168.0.233', '保存文章', NULL, NULL, '2022-02-28 10:17:35', NULL, 0);
  333. INSERT INTO `logger` VALUES (1498120180664295426, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"categoryId\":\"1498119897917874177\",\n \"contentAuthor\":\"\",\n \"contentDatetime\":\"2022-02-28 10:17:08\",\n \"contentDescription\":\"\",\n \"contentDetails\":\"<p>VR的<img src=\\\"/upload/1/cms/content/editor/1646014637116.jpg\\\" title=\\\"1646014637116.jpg\\\" alt=\\\"1633935043460.jpg\\\"/></p>\",\n \"contentDisplay\":\"0\",\n \"contentHit\":0,\n \"contentImg\":\"[]\",\n \"contentKeyword\":\"\",\n \"contentSort\":0,\n \"contentSource\":\"\",\n \"contentTitle\":\"凑人数\",\n \"contentType\":\"\",\n \"createBy\":\"57\",\n \"createDate\":\"2022-02-28 10:17:35\",\n \"del\":0,\n \"id\":\"1498120161911562241\",\n \"sqlWhereList\":[],\n \"updateDate\":\"2022-02-28 10:17:35\"\n }\n]', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/cms/content/delete.do', 'POST', 'net.mingsoft.cms.action.ContentAction.delete()', '192.168.0.233', '删除文章', NULL, NULL, '2022-02-28 10:17:39', NULL, 0);
  334. INSERT INTO `logger` VALUES (1498120226856165377, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"1498120226717753346\"\n }\n}', '{\n \"contentTitle\":[\"cvvc\"],\n \"categoryId\":[\"1498119897917874177\"],\n \"contentType\":[\"\"],\n \"contentDisplay\":[\"0\"],\n \"contentAuthor\":[\"\"],\n \"contentSource\":[\"\"],\n \"contentSort\":[\"0\"],\n \"contentImg\":[\"[]\"],\n \"contentDescription\":[\"\"],\n \"contentKeyword\":[\"\"],\n \"contentDetails\":[\"\"],\n \"contentDatetime\":[\"2022-02-28 10:17:48\"],\n \"id\":[\"\"]\n}', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/cms/content/save.do', 'POST', 'net.mingsoft.cms.action.ContentAction.save()', '192.168.0.233', '保存文章', NULL, NULL, '2022-02-28 10:17:50', NULL, 0);
  335. INSERT INTO `logger` VALUES (1498120247001407489, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"categoryId\":\"1498119897917874177\",\n \"contentAuthor\":\"\",\n \"contentDatetime\":\"2022-02-28 10:17:48\",\n \"contentDescription\":\"\",\n \"contentDetails\":\"\",\n \"contentDisplay\":\"0\",\n \"contentHit\":0,\n \"contentImg\":\"[]\",\n \"contentKeyword\":\"\",\n \"contentSort\":0,\n \"contentSource\":\"\",\n \"contentTitle\":\"cvvc\",\n \"contentType\":\"\",\n \"createBy\":\"57\",\n \"createDate\":\"2022-02-28 10:17:50\",\n \"del\":0,\n \"id\":\"1498120226717753346\",\n \"sqlWhereList\":[],\n \"updateDate\":\"2022-02-28 10:17:50\"\n }\n]', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/cms/content/delete.do', 'POST', 'net.mingsoft.cms.action.ContentAction.delete()', '192.168.0.233', '删除文章', NULL, NULL, '2022-02-28 10:17:55', NULL, 0);
  336. INSERT INTO `logger` VALUES (1498120366857838593, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"1498120366744592385\"\n }\n}', '{\n \"contentTitle\":[\"c\"],\n \"categoryId\":[\"1498119897917874177\"],\n \"contentType\":[\"\"],\n \"contentDisplay\":[\"0\"],\n \"contentAuthor\":[\"\"],\n \"contentSource\":[\"\"],\n \"contentSort\":[\"0\"],\n \"contentImg\":[\"[]\"],\n \"contentDescription\":[\"\"],\n \"contentKeyword\":[\"\"],\n \"contentDetails\":[\"<p>cxccc</p>\"],\n \"contentDatetime\":[\"2022-02-28 10:18:17\"],\n \"id\":[\"\"]\n}', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/cms/content/save.do', 'POST', 'net.mingsoft.cms.action.ContentAction.save()', '192.168.0.233', '保存文章', NULL, NULL, '2022-02-28 10:18:24', NULL, 0);
  337. INSERT INTO `logger` VALUES (1498120398008934401, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"1498120397891493889\"\n }\n}', '{\n \"contentTitle\":[\"ccc\"],\n \"categoryId\":[\"1498119897917874177\"],\n \"contentType\":[\"\"],\n \"contentDisplay\":[\"0\"],\n \"contentAuthor\":[\"\"],\n \"contentSource\":[\"\"],\n \"contentSort\":[\"0\"],\n \"contentImg\":[\"[]\"],\n \"contentDescription\":[\"\"],\n \"contentKeyword\":[\"\"],\n \"contentDetails\":[\"<p>ccc</p>\"],\n \"contentDatetime\":[\"2022-02-28 10:18:26\"],\n \"id\":[\"\"]\n}', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/cms/content/save.do', 'POST', 'net.mingsoft.cms.action.ContentAction.save()', '192.168.0.233', '保存文章', NULL, NULL, '2022-02-28 10:18:31', NULL, 0);
  338. INSERT INTO `logger` VALUES (1498120544390144001, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"categoryDescrip\":\"\",\n \"categoryDiyUrl\":\"\",\n \"categoryFlag\":\"\",\n \"categoryImg\":\"[]\",\n \"categoryKeyword\":\"\",\n \"categoryListUrl\":\"about.htm\",\n \"categoryPath\":\"/ceshilanmu\",\n \"categoryPinyin\":\"ceshilanmu\",\n \"categorySort\":0,\n \"categoryTitle\":\"测试栏目\",\n \"categoryType\":\"1\",\n \"categoryUrl\":\"about.htm\",\n \"createBy\":\"57\",\n \"createDate\":\"2022-02-28 10:16:32\",\n \"del\":0,\n \"flag\":\"\",\n \"id\":\"1498119897917874177\",\n \"leaf\":true,\n \"sqlWhereList\":[],\n \"topId\":\"0\",\n \"typedescrip\":\"\",\n \"typeid\":\"1498119897917874177\",\n \"typekeyword\":\"\",\n \"typeleaf\":true,\n \"typelink\":\"/ceshilanmu/index.html\",\n \"typelitpic\":\"[]\",\n \"typepath\":\"/ceshilanmu\",\n \"typetitle\":\"测试栏目\",\n \"typeurl\":\"\",\n \"updateDate\":\"2022-02-28 10:16:32\"\n }\n]', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/cms/category/delete.do', 'POST', 'net.mingsoft.cms.action.CategoryAction.delete()', '192.168.0.233', '删除分类', NULL, NULL, '2022-02-28 10:19:06', NULL, 0);
  339. INSERT INTO `logger` VALUES (1498122882626576386, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"createBy\":[\"\"],\n \"createDate\":[\"\"],\n \"del\":[\"0\"],\n \"id\":[\"1\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"57\"],\n \"updateDate\":[\"2022-02-27 10:52:30\"],\n \"order\":[\"\"],\n \"appState\":[\"0\"],\n \"appName\":[\"铭飞MCms(5.2.6)\"],\n \"appDescription\":[\"铭飞MCMS\"],\n \"appLogo\":[\"[{\\\"url\\\":\\\"/upload/1/appLogo/1609397756549.png\\\",\\\"name\\\":\\\"1593834123492.png\\\",\\\"path\\\":\\\"/upload/1/appLogo/1609397756549.png\\\",\\\"uid\\\":1609397756411,\\\"status\\\":\\\"success\\\"}]\"],\n \"appStyle\":[\"default\"],\n \"appKeyword\":[\"铭飞MCMS\"],\n \"appCopyright\":[\"版权所有 ©铭飞科技有限公司2012-2019 保留一切权利。\"],\n \"appDir\":[\"web\"],\n \"appUrl\":[\"http://192.168.0.233:8080/\"],\n \"appDatetime\":[\"\"],\n \"appPayDate\":[\"2019-11-17\"],\n \"appPay\":[\"\"],\n \"appId\":[\"1\"],\n \"appHostUrl\":[\"http://192.168.0.233:8080/\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/app/update.do', 'POST', 'net.mingsoft.basic.action.AppAction.update()', '192.168.0.233', '更新站点信息', NULL, NULL, '2022-02-28 10:28:24', NULL, 0);
  340. INSERT INTO `logger` VALUES (1498123014529048578, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"createBy\":[\"\"],\n \"createDate\":[\"\"],\n \"del\":[\"0\"],\n \"id\":[\"1\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"57\"],\n \"updateDate\":[\"2022-02-28 10:28:24\"],\n \"order\":[\"\"],\n \"appState\":[\"0\"],\n \"appName\":[\"铭飞MCms(5.2.6)\"],\n \"appDescription\":[\"铭飞MCMS\"],\n \"appLogo\":[\"[{\\\"url\\\":\\\"/upload/1/appLogo/1609397756549.png\\\",\\\"name\\\":\\\"1593834123492.png\\\",\\\"path\\\":\\\"/upload/1/appLogo/1609397756549.png\\\",\\\"uid\\\":1609397756411,\\\"status\\\":\\\"success\\\"}]\"],\n \"appStyle\":[\"default\"],\n \"appKeyword\":[\"铭飞MCMS\"],\n \"appCopyright\":[\"版权所有 ©铭飞科技有限公司2012-2019 保留一切权利。\"],\n \"appDir\":[\"web\"],\n \"appUrl\":[\"http://localhost:8080/\"],\n \"appDatetime\":[\"\"],\n \"appPayDate\":[\"2019-11-17\"],\n \"appPay\":[\"\"],\n \"appId\":[\"1\"],\n \"appHostUrl\":[\"http://localhost:8080/\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/app/update.do', 'POST', 'net.mingsoft.basic.action.AppAction.update()', '127.0.0.1', '更新站点信息', NULL, NULL, '2022-02-28 10:28:55', NULL, 0);
  341. INSERT INTO `logger` VALUES (1498123234268635137, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"modelType\":[\"cms\"],\n \"modelJson\":[\"{\\n \\\"searchJson\\\": \\\"[\\\\n // 启用站群\\\\n {\'action\':\'and\', \'field\': \'SITE_ENABLE\', \'el\': \'eq\', \'model\': \'siteEnable\', \'name\': \'启用站群\', \'type\': \'switch\'},\\\\n // 站群涉及表\\\\n {\'action\':\'and\', \'field\': \'SITE_TABES\', \'el\': \'eq\', \'model\': \'siteTabes\', \'name\': \'站群涉及表\', \'type\': \'textarea\'},\\\\n]\\\\n\\\",\\n \\\"field\\\": \\\"[\\\\n {\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteEnable\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_ENABLE\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"Boolean\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"启用站群\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"switch\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"11\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n ,{\\\\n \\\\\\\"model\\\\\\\":\\\\\\\"siteTabes\\\\\\\",\\\\n \\\\\\\"key\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"field\\\\\\\":\\\\\\\"SITE_TABES\\\\\\\",\\\\n \\\\\\\"javaType\\\\\\\":\\\\\\\"String\\\\\\\",\\\\n \\\\\\\"jdbcType\\\\\\\":\\\\\\\"VARCHAR\\\\\\\",\\\\n \\\\\\\"name\\\\\\\":\\\\\\\"站群涉及表\\\\\\\",\\\\n \\\\\\\"type\\\\\\\":\\\\\\\"textarea\\\\\\\",\\\\n \\\\\\\"length\\\\\\\":\\\\\\\"255\\\\\\\",\\\\n \\\\\\\"isShow\\\\\\\":\\\\\\\"false\\\\\\\"\\\\n }\\\\n]\\\\n\\\\n\\\",\\n \\\"html\\\": \\\"\\\\n<template id=\\\\\\\"custom-model\\\\\\\">\\\\n <el-form ref=\\\\\\\"form\\\\\\\" :model=\\\\\\\"form\\\\\\\" :rules=\\\\\\\"rules\\\\\\\" label-width=\\\\\\\"120px\\\\\\\" label-position=\\\\\\\"right\\\\\\\" size=\\\\\\\"small\\\\\\\">\\\\n\\\\n <!--启用站群-->\\\\n \\\\n <el-form-item label=\\\\\\\"启用站群\\\\\\\" prop=\\\\\\\"siteEnable\\\\\\\">\\\\n <el-switch v-model=\\\\\\\"form.siteEnable\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\">\\\\n </el-switch>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n建议系统初始化时候决定是否启用<br/>\\\\n注:修改后需要重启系统生效 </div>\\\\n </el-form-item>\\\\n \\\\n <!--站群涉及表-->\\\\t\\\\n\\\\t <el-form-item label=\\\\\\\"站群涉及表\\\\\\\" prop=\\\\\\\"siteTabes\\\\\\\">\\\\n\\\\t <el-input\\\\n type=\\\\\\\"textarea\\\\\\\" :rows=\\\\\\\"5\\\\\\\"\\\\n :disabled=\\\\\\\"false\\\\\\\"\\\\n :readonly=\\\\\\\"false\\\\\\\"\\\\n v-model=\\\\\\\"form.siteTabes\\\\\\\"\\\\n :style=\\\\\\\"{width: \'100%\'}\\\\\\\"\\\\n placeholder=\\\\\\\"请输入站群涉及表\\\\\\\">\\\\n </el-input>\\\\n <div class=\\\\\\\"ms-form-tip\\\\\\\">\\\\n多个表逗号,分割,表中必须存在APP_ID字段<br/>\\\\n注:表有改动需要重新在站点管理初始化APPID </div>\\\\n\\\\t </el-form-item>\\\\n\\\\t \\\\n </el-form>\\\\n</template>\\\\n\\\",\\n \\\"title\\\": \\\"站群配置\\\",\\n \\\"script\\\": \\\"\\\\n\\\\nvar custom_model = Vue.component(\\\\\\\"custom-model\\\\\\\",{\\\\nel: \'#custom-model\',\\\\ndata:function() {\\\\nreturn {\\\\n\\\\nmodelId:0,\\\\nmodelName: \\\\\\\"站群配置\\\\\\\",\\\\n//表单数据\\\\nform: {\\\\nlinkId:0,\\\\n // 启用站群\\\\n siteEnable:false,\\\\n // 站群涉及表\\\\n siteTabes:\'cms_content,cms_category\',\\\\n},\\\\n\\\\nrules:{\\\\n},\\\\n}\\\\n},\\\\nwatch:{\\\\n \\\\n //启用站群 \\\\n \\\\\\\"form.siteEnable\\\\\\\":function(nev,old){\\\\n if(typeof(nev)==\'string\') {\\\\n this.form.siteEnable = (nev==\'true\');\\\\n } \\\\n },\\\\n},\\\\ncomputed:{\\\\n},\\\\nmethods: {\\\\nvalidate:function(){\\\\nvar b = false\\\\nthis.$refs.form.validate(function(valid){\\\\nb = valid;\\\\n});\\\\nreturn b;\\\\n},\\\\nsave:function(callback) {\\\\nvar that = this;\\\\nvar url = this.formURL.save.url;\\\\nif (that.form.id > 0) {\\\\nurl = this.formURL.update.url;\\\\n}\\\\nthis.$refs.form.validate(function(valid) {\\\\nif (valid) {\\\\nvar form = JSON.parse(JSON.stringify(that.form));\\\\nform.modelId = that.modelId;\\\\nms.http.post(url, form).then(function (res) {\\\\nif(callback) {\\\\ncallback(res);\\\\n}\\\\n});\\\\n}else{\\\\ncallback({result:false,msg:\'请检查表单输入项\'});\\\\n}\\\\n})\\\\n},\\\\n//获取当前站群配置\\\\nget:function(id) {\\\\nvar that = this;\\\\nms.http.get(this.formURL.get.url, Object.assign({\\\\\\\"modelId\\\\\\\":that.modelId},this.formURL.get.params)).then(function (res) {\\\\nif(res.result&&res.data){\\\\nthat.form = res.data;\\\\n}\\\\n}).catch(function (err) {\\\\nconsole.log(err);\\\\n});\\\\n},\\\\n\\\\n},\\\\ncreated:function() {\\\\n//渲染create\\\\n\\\\nt', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/model/importJson.do', 'POST', 'net.mingsoft.mdiy.action.ModelAction.importJson()', '127.0.0.1', '导入自定义模型', NULL, NULL, '2022-02-28 10:29:47', NULL, 0);
  342. INSERT INTO `logger` VALUES (1498127411212410881, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":\"/upload/cms/content/1646016383341.jpg\"\n}', '{}', '内网IP', 'msopen', 'manage', 'other', 'success', '/ms/file/upload.do', 'POST', 'net.mingsoft.basic.action.ManageFileAction.upload()', '127.0.0.1', '处理post请求上传文件', NULL, NULL, '2022-02-28 10:46:23', NULL, 0);
  343. INSERT INTO `logger` VALUES (1498129507366166529, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"1\"\n }\n}', '{\n \"pageType\":[\"cms\"],\n \"pageTitle\":[\"测试\"],\n \"pagePath\":[\"news-detail.htm\"],\n \"pageKey\":[\"test.do\"]\n}', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/mdiy/page/save.do', 'POST', 'net.mingsoft.mdiy.action.PageAction.save()', '127.0.0.1', '保存自定义页面接口', NULL, NULL, '2022-02-28 10:54:43', NULL, 0);
  344. INSERT INTO `logger` VALUES (1498129549716054017, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"1\"\n }\n}', '{\n \"createBy\":[\"57\"],\n \"createDate\":[\"2022-02-28 10:54:43\"],\n \"del\":[\"0\"],\n \"id\":[\"1\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"\"],\n \"updateDate\":[\"2022-02-28 10:54:43\"],\n \"order\":[\"\"],\n \"pagePath\":[\"news-detail.htm\"],\n \"pageTitle\":[\"测试\"],\n \"notDel\":[\"0\"],\n \"pageKey\":[\"test\"],\n \"pageType\":[\"cms\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/mdiy/page/update.do', 'POST', 'net.mingsoft.mdiy.action.PageAction.update()', '127.0.0.1', '更新自定义页面接口', NULL, NULL, '2022-02-28 10:54:53', NULL, 0);
  345. INSERT INTO `logger` VALUES (1498129595425579010, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"1\"\n }\n}', '{\n \"createBy\":[\"57\"],\n \"createDate\":[\"2022-02-28 10:54:43\"],\n \"del\":[\"0\"],\n \"id\":[\"1\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"57\"],\n \"updateDate\":[\"2022-02-28 10:54:53\"],\n \"order\":[\"\"],\n \"pagePath\":[\"index.htm\"],\n \"pageTitle\":[\"测试\"],\n \"notDel\":[\"0\"],\n \"pageKey\":[\"test\"],\n \"pageType\":[\"cms\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/mdiy/page/update.do', 'POST', 'net.mingsoft.mdiy.action.PageAction.update()', '127.0.0.1', '更新自定义页面接口', NULL, NULL, '2022-02-28 10:55:04', NULL, 0);
  346. INSERT INTO `logger` VALUES (1498143202888605697, NULL, '{\n \"result\":true,\n \"code\":200\n}', '[\n {\n \"createBy\":\"57\",\n \"createDate\":\"2022-02-28 10:54:43\",\n \"del\":0,\n \"id\":\"1\",\n \"notDel\":0,\n \"pageKey\":\"test\",\n \"pagePath\":\"index.htm\",\n \"pageTitle\":\"测试\",\n \"pageType\":\"cms\",\n \"sqlWhereList\":[],\n \"updateBy\":\"57\",\n \"updateDate\":\"2022-02-28 10:55:04\"\n }\n]', '内网IP', 'msopen', 'manage', 'delete', 'success', '/ms/mdiy/page/delete.do', 'POST', 'net.mingsoft.mdiy.action.PageAction.delete()', '127.0.0.1', '批量删除自定义页面接口', NULL, NULL, '2022-02-28 11:49:08', NULL, 0);
  347. INSERT INTO `logger` VALUES (1498175866450436097, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', '', 'manage', 'update', 'success', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', NULL, NULL, '2022-02-28 13:58:56', NULL, 0);
  348. COMMIT;
  349. -- ----------------------------
  350. -- Table structure for manager
  351. -- ----------------------------
  352. DROP TABLE IF EXISTS `manager`;
  353. CREATE TABLE `manager` (
  354. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id主键',
  355. `ROLE_IDS` varchar(11) DEFAULT NULL COMMENT '角色编号',
  356. `people_id` int(11) DEFAULT '0' COMMENT '用户编号即商家编号',
  357. `manager_admin` varchar(255) DEFAULT NULL COMMENT '管理员标识,超级管理员:super,子管理员:open',
  358. `manager_name` varchar(15) DEFAULT NULL COMMENT '管理员用户名',
  359. `manager_nickname` varchar(15) DEFAULT NULL COMMENT '管理员昵称',
  360. `manager_password` varchar(45) DEFAULT NULL COMMENT '管理员密码',
  361. `UPDATE_BY` varchar(11) DEFAULT NULL COMMENT '更新人',
  362. `UPDATE_DATE` datetime DEFAULT NULL COMMENT '更新时间',
  363. `CREATE_BY` varchar(11) DEFAULT NULL COMMENT '创建人',
  364. `CREATE_DATE` datetime DEFAULT NULL COMMENT '创建时间',
  365. `DEL` int(1) DEFAULT '0' COMMENT '删除标记',
  366. `MANAGER_LOCK` varchar(10) DEFAULT '0' COMMENT '锁定状态',
  367. PRIMARY KEY (`id`) USING BTREE,
  368. KEY `fk_manager_role_id` (`ROLE_IDS`) USING BTREE
  369. ) ENGINE=InnoDB AUTO_INCREMENT=58 DEFAULT CHARSET=utf8 COMMENT='管理员表';
  370. -- ----------------------------
  371. -- Records of manager
  372. -- ----------------------------
  373. BEGIN;
  374. INSERT INTO `manager` VALUES (57, '48', 0, 'super', 'msopen', 'msopen', '9d8622060de5f24937b60585c3f4d66b', NULL, NULL, NULL, NULL, 0, '0');
  375. COMMIT;
  376. -- ----------------------------
  377. -- Table structure for mdiy_config
  378. -- ----------------------------
  379. DROP TABLE IF EXISTS `mdiy_config`;
  380. CREATE TABLE `mdiy_config` (
  381. `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  382. `config_name` varchar(255) DEFAULT NULL COMMENT '模型名称',
  383. `config_data` varchar(4000) DEFAULT NULL COMMENT '模型数据',
  384. `update_date` datetime DEFAULT NULL COMMENT '修改时间',
  385. `update_by` int(11) DEFAULT NULL COMMENT '修改人',
  386. `create_date` datetime DEFAULT NULL COMMENT '创建时间',
  387. `create_by` int(11) DEFAULT NULL COMMENT '创建人',
  388. `del` int(1) DEFAULT '0' COMMENT '删除标记',
  389. `NOT_DEL` int(1) DEFAULT '0' COMMENT '1为不能删除,主要用于系统默认数据,0为一般数据,主要是前端控制',
  390. PRIMARY KEY (`id`) USING BTREE,
  391. UNIQUE KEY `idx_config_name` (`config_name`)
  392. ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='自定义配置';
  393. -- ----------------------------
  394. -- Records of mdiy_config
  395. -- ----------------------------
  396. BEGIN;
  397. COMMIT;
  398. -- ----------------------------
  399. -- Table structure for mdiy_dict
  400. -- ----------------------------
  401. DROP TABLE IF EXISTS `mdiy_dict`;
  402. CREATE TABLE `mdiy_dict` (
  403. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id主键',
  404. `dict_value` varchar(100) COLLATE utf8_bin NOT NULL COMMENT '数据值',
  405. `dict_label` varchar(100) COLLATE utf8_bin NOT NULL COMMENT '标签名',
  406. `dict_type` varchar(100) COLLATE utf8_bin NOT NULL COMMENT '类型',
  407. `dict_description` varchar(100) COLLATE utf8_bin DEFAULT NULL COMMENT '描述',
  408. `is_child` varchar(255) COLLATE utf8_bin DEFAULT NULL COMMENT '扩展业务标记',
  409. `dict_enable` varchar(11) COLLATE utf8_bin DEFAULT '1' COMMENT '启用状态',
  410. `dict_remarks` varchar(255) COLLATE utf8_bin DEFAULT NULL COMMENT '备注信息',
  411. `dict_sort` int(10) NOT NULL DEFAULT '0' COMMENT '排序(升序)',
  412. `UPDATE_BY` varchar(11) COLLATE utf8_bin DEFAULT NULL COMMENT '更新人',
  413. `UPDATE_DATE` datetime DEFAULT NULL COMMENT '更新时间',
  414. `CREATE_BY` varchar(11) COLLATE utf8_bin DEFAULT NULL COMMENT '创建人',
  415. `CREATE_DATE` datetime DEFAULT NULL COMMENT '创建时间',
  416. `DEL` int(1) DEFAULT '0' COMMENT '删除标记',
  417. `NOT_DEL` int(1) DEFAULT '0' COMMENT '1为不能删除,主要用于系统默认数据,0为一般数据,主要是前端控制',
  418. PRIMARY KEY (`id`) USING BTREE,
  419. UNIQUE KEY `inx_unique` (`dict_value`,`dict_label`,`dict_type`),
  420. KEY `inx_dict_value` (`dict_value`) USING BTREE,
  421. KEY `inx_dict_label` (`dict_label`) USING BTREE
  422. ) ENGINE=InnoDB AUTO_INCREMENT=645 DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='字典表';
  423. -- ----------------------------
  424. -- Records of mdiy_dict
  425. -- ----------------------------
  426. BEGIN;
  427. INSERT INTO `mdiy_dict` VALUES (1, 'f', '幻灯', '文章属性', NULL, NULL, '1', NULL, 3, NULL, NULL, NULL, NULL, 3, 1);
  428. INSERT INTO `mdiy_dict` VALUES (2, 'p', '图片', '文章属性', NULL, NULL, '1', NULL, 1, NULL, NULL, NULL, NULL, 3, 1);
  429. INSERT INTO `mdiy_dict` VALUES (3, 'c', '推荐', '文章属性', NULL, NULL, '1', NULL, 4, '57', '2021-03-26 08:39:05', NULL, NULL, 3, 1);
  430. INSERT INTO `mdiy_dict` VALUES (4, 'h', '头条', '文章属性', NULL, NULL, '1', NULL, 2, NULL, NULL, NULL, NULL, 3, 1);
  431. INSERT INTO `mdiy_dict` VALUES (621, 'cms', '文章', '自定义模型类型', NULL, '0', '1', NULL, 0, NULL, NULL, NULL, NULL, 3, 1);
  432. INSERT INTO `mdiy_dict` VALUES (642, 'cms', '文章', '自定义页面类型', NULL, NULL, '1', NULL, 0, NULL, NULL, NULL, NULL, 3, 1);
  433. INSERT INTO `mdiy_dict` VALUES (643, 'c', '推荐', '栏目属性', NULL, NULL, '1', NULL, 0, NULL, NULL, NULL, NULL, 3, 1);
  434. INSERT INTO `mdiy_dict` VALUES (644, 'nav', '导航', '栏目属性', NULL, NULL, '1', NULL, 0, NULL, NULL, NULL, NULL, 3, 1);
  435. COMMIT;
  436. -- ----------------------------
  437. -- Table structure for mdiy_form
  438. -- ----------------------------
  439. DROP TABLE IF EXISTS `mdiy_form`;
  440. CREATE TABLE `mdiy_form` (
  441. `form_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增长id',
  442. `form_tips_name` varchar(30) NOT NULL COMMENT '自定义表单提示文字',
  443. `form_table_name` varchar(30) NOT NULL COMMENT '自定义表单表名',
  444. `form_app_id` int(11) NOT NULL COMMENT '自定义表单关联的应用编号',
  445. `create_by` int(11) DEFAULT NULL,
  446. `create_date` datetime DEFAULT NULL,
  447. `update_by` int(11) DEFAULT NULL,
  448. `update_date` datetime DEFAULT NULL,
  449. PRIMARY KEY (`form_id`) USING BTREE,
  450. KEY `fk_mdiy_form` (`form_app_id`) USING BTREE,
  451. CONSTRAINT `mdiy_form_ibfk_1` FOREIGN KEY (`form_app_id`) REFERENCES `app` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION
  452. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='自定义表单表';
  453. -- ----------------------------
  454. -- Records of mdiy_form
  455. -- ----------------------------
  456. BEGIN;
  457. COMMIT;
  458. -- ----------------------------
  459. -- Table structure for mdiy_model
  460. -- ----------------------------
  461. DROP TABLE IF EXISTS `mdiy_model`;
  462. CREATE TABLE `mdiy_model` (
  463. `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  464. `model_json` text COMMENT 'json',
  465. `model_table_name` varchar(255) DEFAULT NULL COMMENT '模型表名',
  466. `model_name` varchar(30) DEFAULT NULL COMMENT '模型名称',
  467. `model_type` varchar(255) DEFAULT NULL COMMENT '自定义模型类型,自定义表单不用该字段',
  468. `model_field` text COMMENT '模型字段',
  469. `model_custom_type` varchar(255) DEFAULT NULL COMMENT '类型,自定义表单:post,自定义模型:model',
  470. `update_date` datetime DEFAULT NULL COMMENT '修改时间',
  471. `update_by` varchar(11) DEFAULT NULL COMMENT '修改人',
  472. `create_date` datetime DEFAULT NULL COMMENT '创建时间',
  473. `create_by` varchar(11) DEFAULT NULL COMMENT '创建人',
  474. `del` int(1) DEFAULT '0' COMMENT '删除标记',
  475. `NOT_DEL` int(1) DEFAULT '0' COMMENT '1为不能删除,主要用于系统默认数据,0为一般数据,主要是前端控制',
  476. PRIMARY KEY (`id`) USING BTREE
  477. ) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8 COMMENT='自定义模型';
  478. -- ----------------------------
  479. -- Records of mdiy_model
  480. -- ----------------------------
  481. BEGIN;
  482. COMMIT;
  483. -- ----------------------------
  484. -- Table structure for mdiy_page
  485. -- ----------------------------
  486. DROP TABLE IF EXISTS `mdiy_page`;
  487. CREATE TABLE `mdiy_page` (
  488. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id主键',
  489. `page_key` varchar(255) NOT NULL COMMENT '自定义页面访问路径',
  490. `page_path` varchar(255) NOT NULL COMMENT '自定义页面绑定模板的路径',
  491. `page_title` varchar(255) NOT NULL COMMENT '自定义页面标题',
  492. `page_type` varchar(255) DEFAULT NULL COMMENT '字典分类字段',
  493. `UPDATE_BY` varchar(11) DEFAULT NULL COMMENT '更新人',
  494. `page_model_id` int(11) DEFAULT NULL COMMENT '模块id',
  495. `UPDATE_DATE` datetime DEFAULT NULL COMMENT '更新时间',
  496. `CREATE_BY` varchar(11) DEFAULT NULL COMMENT '创建人',
  497. `CREATE_DATE` datetime DEFAULT NULL COMMENT '创建时间',
  498. `DEL` int(1) DEFAULT '0' COMMENT '删除标记',
  499. `NOT_DEL` int(1) DEFAULT '0' COMMENT '删除标记',
  500. PRIMARY KEY (`id`) USING BTREE,
  501. UNIQUE KEY `idx_page_key` (`page_key`)
  502. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='自定义页面表';
  503. -- ----------------------------
  504. -- Records of mdiy_page
  505. -- ----------------------------
  506. BEGIN;
  507. COMMIT;
  508. -- ----------------------------
  509. -- Table structure for mdiy_tag
  510. -- ----------------------------
  511. DROP TABLE IF EXISTS `mdiy_tag`;
  512. CREATE TABLE `mdiy_tag` (
  513. `id` int(11) NOT NULL AUTO_INCREMENT,
  514. `tag_name` varchar(255) DEFAULT NULL COMMENT '标签名称',
  515. `tag_type` varchar(255) DEFAULT NULL COMMENT '标签类型',
  516. `tag_sql` text COMMENT '标签sql',
  517. `tag_class` varchar(255) DEFAULT NULL COMMENT '标签类',
  518. `tag_description` varchar(255) DEFAULT NULL COMMENT '描述',
  519. `UPDATE_BY` varchar(11) DEFAULT NULL COMMENT '更新人',
  520. `UPDATE_DATE` datetime DEFAULT NULL COMMENT '更新时间',
  521. `CREATE_BY` varchar(11) DEFAULT NULL COMMENT '创建人',
  522. `CREATE_DATE` datetime DEFAULT NULL COMMENT '创建时间',
  523. `DEL` int(1) DEFAULT '0' COMMENT '删除标记',
  524. `NOT_DEL` int(1) DEFAULT '0' COMMENT '1为不能删除,主要用于系统默认数据,0为一般数据,主要是前端控制',
  525. PRIMARY KEY (`id`) USING BTREE
  526. ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COMMENT='标签';
  527. -- ----------------------------
  528. -- Records of mdiy_tag
  529. -- ----------------------------
  530. BEGIN;
  531. INSERT INTO `mdiy_tag` VALUES (3, 'arclist', 'list', ' <#assign _typeid=\'\'/>\n<#assign _typetitle=\'\'/>\n<#assign _size=\'20\'/>\n\n<#if column?? && column.id?? && column.id?number gt 0>\n <#assign _typeid=\'${column.id}\'>\n</#if>\n\n<#if typeid??>\n <#assign _typeid=\'${typeid}\'>\n</#if>\n\n<#if typetitle??>\n <#assign _typetitle=\'${typetitle}\'>\n</#if>\n\n<#if size??>\n <#assign _size=\'${size}\'>\n</#if>\n\n<#if orderby?? >\n <#if orderby==\'date\'>\n <#assign _orderby=\'content_datetime\'>\n <#elseif orderby==\'updatedate\'>\n <#assign _orderby=\'content_updatetime\'>\n <#elseif orderby==\'hit\'>\n <#assign _orderby=\'content_hit\'>\n <#elseif orderby==\'sort\'>\n <#assign _orderby=\'content_sort\'>\n <#else>\n <#assign _orderby=\'cms_content.id\'>\n </#if>\n<#else>\n <#assign _orderby=\'cms_content.id\'>\n</#if>\n\nSELECT\n cms_content.id AS id,\n content_title AS title,\n content_title AS fulltitle,\n content_author AS author,\n content_source AS source,\n content_details AS content,\n category.category_title AS typetitle,\n category.id AS typeid,\ncategory.category_path AS typepath,\n category.category_img AS typelitpic,\n category.category_keyword as typekeyword,\n category.top_id as topId,\n category.category_parent_ids as parentids,\n category.category_type AS \"type\",\n\n <#--列表页动态链接-->\n <#if isDo?? && isDo>\n CONCAT(\'/${modelName}/list.do?typeid=\', category.category_id) as typelink,\n <#else>\n (SELECT \'index.html\') AS typelink,\n </#if>\n content_description AS descrip,\n content_hit AS hit,\n content_type AS flag,\n cms_content.content_keyword AS keyword,\n content_img AS litpic,\n \n <#--内容页动态链接-->\n <#if isDo?? && isDo>\n CONCAT(\'/${modelName}/view.do?id=\', cms_content.id,\'&orderby=${_orderby}\',\'&order=${order!\'ASC\'}\',\'&typeid=${typeid}\') as \"link\",\n <#else>\n CONCAT(category.category_path,\'/\',if(category_type=2,\"index\",cms_content.id),\'.html\') AS \"link\",\n </#if>\n\n <#if tableName??>${tableName}.*,</#if>\n content_datetime AS \"date\"\nFROM\n cms_content LEFT JOIN cms_category as category\n ON cms_content.category_id = category.id\n\n <#--判断是否有自定义模型表-->\n <#if tableName??>\n LEFT JOIN ${tableName} ON ${tableName}.link_id=cms_content.id\n </#if>\n WHERE \n content_display=0\n and cms_content.del=0\n <#--根据站点编号查询-->\n <#if appId?? >\n and cms_content.app_id=${appId}\n and cms_content.id>0\n </#if>\n <#--判断是否有搜索分类集合-->\n <#if search?? && _typeid==\"\">\n <#if search.categoryIds?has_content>and FIND_IN_SET(category.id,\'${search.categoryIds}\')</#if>\n <#--标题-->\n <#if search.content_title??> and content_title like CONCAT(\'%\',\'${search.content_title}\',\'%\')</#if>\n <#--作者-->\n <#if search.content_author??> and content_author like CONCAT(\'%\',\'${search.content_author}\',\'%\')</#if>\n <#--来源-->\n <#if search.content_source??> and content_source like CONCAT(\'%\',\'${search.content_source}\',\'%\')</#if>\n <#--属性-->\n <#if search.content_type??> and (\n <#list search.content_type?split(\',\') as item>\n <#if item?index gt 0> or</#if>\n FIND_IN_SET(\'${item}\',cms_content.content_type)\n </#list>)\n </#if>\n\n <#--描述-->\n <#if search.content_description??>\n and content_description like CONCAT(\'%\',\'${search.content_description}\',\'%\')\n </#if>\n\n <#--关键字-->\n <#if search.content_keyword??> and content_keyword like CONCAT(\'%\',\'${search.content_keyword}\',\'%\')</#if>\n\n <#--内容-->\n <#if search.content_details??> and content_details like CONCAT(\'%\',\'${search.content_details}\',\'%\')</#if>\n\n <#--自定义顺序-->\n <#if search.content_sort??> and content_sort=${search.content_sort}</#if>\n <#--时间范围-->\n <#if search.content_datetime_start??&&search.content_datetime_end??>\n and content_datetime between \'${search.content_datetime_start}\' and \'${search.content_datetime_end}\'\n </#if>\n <#else>\n <#--查询栏目-->\n <#if _typeid?has_content> \n and (cms_content.category_id=${_typeid} or cms_content.category_id in (select id FROM cms_category where cms_category.del=0 \n <#if _typetitle?has_content>\n and cms_category.category_title=\'${_typetitle}\'</#if> and FIND_IN_SET(${_typeid},CATEGORY_PARENT_IDS))) \n </#if>\n </#if>\n <#--标题-->\n <#if content_title??> and content_title like CONCAT(\'%\',\'${content_title}\',\'%\')</#if>\n <#--作者-->\n <#if content_author??> and content_author like CONCAT(\'%\',\'${content_author}\',\'%\')</#if>\n <#--来源-->\n <#if content_source??> and content_source like CONCAT(\'%\',\'${content_source}\',\'%\')</#if>\n <#--属性-->\n <#if content_type??> and content_type like CONCAT(\'%\',\'${content_type}\',\'%\')</#if>\n <#--描述-->\n <#if content_description??> and content_description like CONCAT(\'%\',\'${content_description}\',\'%\')</#if>\n <#--关键字-->\n <#if content_keyword??> and content_keyword like CONCAT(\'%\',\'${content_keyword}\',\'%\')</#if>\n <#--内容-->\n <#if content_details??> and content_details like CONCAT(\'%\',\'${content_details}\',\'%\')</#if>\n <#--自定义顺序-->\n <#if content_sort??> and content_sort=${content_sort}</#if>\n <#--自定义模型-->\n <#if diyModel??>\n <#list diyModel as dm>\n and ${tableName}.${dm.key} like CONCAT(\'%\',\'${dm.value}\',\'%\') \n </#list>\n </#if>\n <#--文章属性-->\n <#if flag?? >\n and(\n <#list flag?split(\',\') as item>\n <#if item?index gt 0> or</#if>\n FIND_IN_SET(\'${item}\',cms_content.content_type)\n </#list>)\n </#if>\n <#if noflag??>\n and(\n <#list noflag?split(\',\') as item>\n <#if item?index gt 0> and</#if>\n FIND_IN_SET(\'${item}\',cms_content.content_type)=0\n </#list> or cms_content.content_type is null)\n </#if>\n\n <#--字段排序-->\n <#if orderby?? >\n ORDER BY\n <#if orderby==\'date\'> content_datetime\n <#elseif orderby==\'updatedate\'> content_updatetime\n <#elseif orderby==\'hit\'> content_hit\n <#elseif orderby==\'sort\'> content_sort\n <#else>\n cms_content.id\n </#if>\n <#else>\n ORDER BY cms_content.id\n </#if>\n\n <#if order?? >\n <#if order==\'desc\'> desc</#if>\n <#if order==\'asc\'> asc</#if>\n <#else>\n desc\n </#if>\n LIMIT \n <#--判断是否分页-->\n <#if ispaging?? && (pageTag.pageNo)??>\n ${((pageTag.pageNo-1)*_size?eval)?c},${_size?default(20)}\n <#else>\n ${_size?default(20)}\n </#if>', NULL, '文章列表', NULL, NULL, NULL, NULL, 0, 1);
  532. INSERT INTO `mdiy_tag` VALUES (4, 'channel', 'list', '<#assign _typeid=\'0\'/>\n<#if column?? && column.id?? && column.id?number gt 0>\n <#assign _typeid=\'${column.id}\'>\n <#assign selfid=\'${column.id}\'>\n</#if>\n\n<#if typeid??>\n <#assign _typeid=\'${typeid}\'>\n</#if>\n\nselect\n id,\n id as typeid,\n category_title as typetitle,\n <#--动态链接-->\n <#if isDo?? && isDo>\n CONCAT(\'/${modelName}/list.do?typeid=\', id) as typelink,\n <#else>\n <#--栏目类型为链接-->\n CONCAT(category_path,\'/index.html\') as typelink,\n </#if>\n category_keyword as typekeyword,\n category_diy_url as typeurl,\n category_flag as flag,\n category_parent_ids as parentids,\n category_descrip as typedescrip,\n category_type as type,\n category_path as typepath,\n leaf as typeleaf,\n category_img as typelitpic ,\n ( SELECT count(*) FROM cms_category cc WHERE cc.category_id = cms_category.id AND cc.del = 0 ) AS childsize \n from cms_category\n where\n cms_category.del=0\n <#--根据站点编号查询-->\n <#if appId?? >\n and cms_category.app_id=${appId}\n </#if>\n\n <#--栏目属性-->\n <#if flag?? >\n and\n (<#list flag?split(\',\') as item>\n <#if item?index gt 0> or</#if>\n FIND_IN_SET(\'${item}\',category_flag)\n </#list>)\n </#if>\n\n <#if noflag?? >\n and\n (<#list noflag?split(\',\') as item>\n <#if item?index gt 0> and</#if>\n FIND_IN_SET(\'${item}\',category_flag)=0\n </#list> or category_flag is null)\n </#if>\n\n <#--type默认son-->\n <#if !type??||!type?has_content>\n <#assign type=\'son\'/>\n </#if>\n\n <#if type?has_content>\n <#--顶级栏目(单个)-->\n <#if type==\'top\'>\n <#if _typeid != \'0\'>\n and (id = top_id or top_id = 0)\n </#if>\n\n <#elseif type==\'nav\'>\n and(category_id=0 or category_id is null)\n\n <#--同级栏目(多个)-->\n <#elseif type==\'level\'>\n and\n <#if _typeid != \'0\'>\n category_id=(select category_id from cms_category where id=${_typeid})\n <#else>\n 1=1\n </#if>\n\n <#--当前栏目(单个)-->\n <#elseif type==\'self\'>\n and\n <#if _typeid != \'0\'>\n id=${_typeid}\n <#else>\n 1=1\n </#if>\n\n <#--当前栏目的所属栏目(多个)-->\n <#elseif type==\'path\'>\n and\n <#if _typeid != \'0\'>\n id in (<#if column?? && column.categoryParentIds??>${column.categoryParentIds},</#if>${_typeid})\n <#else>\n 1=1\n </#if>\n <#--子栏目(多个)-->\n\n <#elseif type==\'son\'>\n and\n <#if _typeid != \'0\'>\n category_id=${_typeid}\n <#else>\n 1=1\n </#if>\n\n <#--上一级栏目没有则取当前栏目(单个)-->\n <#elseif type==\'parent\'>\n and\n <#if _typeid != \'0\'>\n <#if column?? && column.categoryId??>\n id=${column.categoryId}\n <#else>\n id=${_typeid}\n </#if>\n <#else>\n 1=1\n </#if>\n </#if>\n\n<#else> <#--默认顶级栏目-->\n and\n <#if _typeid != \'0\'>\n id=${_typeid}\n <#else>\n (category_id=0 or category_id is null)\n </#if>\n\n</#if>\n\n<#--字段排序-->\n<#if orderby?? >\n ORDER BY\n <#if orderby==\'date\'> category_datetime\n <#elseif orderby==\'sort\'> category_sort\n <#else>id</#if>\n</#if>\n\n<#if order?? >\n <#if order==\'desc\'> desc</#if>\n <#if order==\'asc\'> asc</#if>\n</#if>', NULL, '通用栏目', NULL, NULL, NULL, NULL, 0, 1);
  533. INSERT INTO `mdiy_tag` VALUES (5, 'global', 'single', 'select\nAPP_NAME as name,\napp_logo as logo,\napp_keyword as keyword,\napp_description as descrip,\napp_copyright as copyright,\n<#--动态解析 -->\n<#if isDo?? && isDo>\nCONCAT(\'${url}\',\'${html}/\',app_dir) as url,\n\'${url}\' as host,\n<#--使用地址栏的域名 -->\n<#elseif url??>\nCONCAT(\'${url}\',\'${html}/\',app_dir) as url,\n\'${url}\' as host,\n<#else>\nCONCAT(REPLACE(REPLACE(TRIM(substring_index(app_url,\'\\n\',1)), CHAR(10),\'\'), CHAR(13),\'\'),\'/html/\',app_dir) as url,\nREPLACE(REPLACE(TRIM(substring_index(app_url,\'\\n\',1)), CHAR(10),\'\'), CHAR(13),\'\') as host,\n</#if>\nCONCAT(\'template/\',id,\'/\',app_style) as \"style\" <#-- 判断是否为手机端 -->\nfrom app\n<#--根据站点编号查询-->\n<#if appId?? >\n where id = ${appId}\n</#if>', NULL, '全局', NULL, NULL, NULL, NULL, 0, 1);
  534. INSERT INTO `mdiy_tag` VALUES (7, 'field', 'single', 'SELECT\ncms_content.id as id,\ncontent_title as title,\ncontent_author as author, \ncontent_source as source, \ncontent_details as content,\ncms_category.id as typeid,\ncms_category.leaf as typeleaf,\ncms_category.category_title as typetitle,\ncms_category.category_img AS typelitpic,\ncms_category.top_id as topId,\ncms_category.category_flag as typeflag,\ncms_category.category_parent_ids as parentids,\ncms_category.category_keyword as typekeyword,\ncms_category.category_descrip as typedescrip,\ncms_category.category_diy_url as typeurl,\n<#--动态链接-->\n<#if isDo?? && isDo>\nCONCAT(\'/${modelName}/list.do?typeid=\', cms_category.id) as typelink,\n<#else>\n <#--栏目类型为链接-->\n CONCAT(cms_category.category_path,\'/index.html\') as typelink,\n</#if>\ncms_content.content_img AS litpic,\n<#--内容页动态链接-->\n<#if isDo?? && isDo>\nCONCAT(\'/mcms/view.do?id=\', cms_content.id) as \"link\",\n<#else>\nCONCAT(cms_category.category_path,\'/\',cms_content.id,\'.html\') AS \"link\",\n</#if>\ncontent_datetime as \"date\",\ncontent_description as descrip,\nCONCAT(\'<script type=\"text/javascript\" src=\"${url}/cms/content/\',cms_content.id,\'/hit.do\"></script>\') as hit,\ncontent_type as flag,\ncategory_title as typetitle,\n<#if tableName??>${tableName}.*,</#if>\ncontent_keyword as keyword\nFROM cms_content\nLEFT JOIN cms_category ON\ncms_category.id = cms_content.category_id\n<#--判断是否有自定义模型表-->\n<#if tableName??>left join ${tableName} on ${tableName}.link_id=cms_content.id</#if>\nWHERE\n<#--如果是栏目列表页没有文章id所以只取栏目id-->\n<#if column??&&column.id??&&!id??>\ncms_category.id=${column.id} and\n</#if>\n cms_content.del=0\n<#if id??> and cms_content.id=${id}</#if>', NULL, '文章内容', NULL, NULL, NULL, NULL, 0, 1);
  535. INSERT INTO `mdiy_tag` VALUES (8, 'pre', 'single', '<#assign select=\"(SELECT \'\')\"/>\n<#if orderby?? >\n <#if orderby==\"date\">\n <#assign _orderby=\"content_datetime\">\n <#elseif orderby==\"updatedate\">\n <#assign _orderby=\"content_updatetime\">\n <#elseif orderby==\"hit\">\n <#assign _orderby=\"content_hit\">\n <#elseif orderby==\"sort\">\n <#assign _orderby=\"content_sort\">\n <#else><#assign _orderby=\"cms_content.id\"></#if>\n <#else>\n <#assign _orderby=\"cms_content.id\">\n </#if>\n<#if pageTag.preId??>\nSELECT\ncms_content.id as id,\ncontent_title as title,\ncontent_author as author, \ncontent_source as source, \ncontent_details as content,\ncategory.category_title as typename,\ncategory.category_id as typeid,\n(SELECT \'index.html\') as typelink,\ncontent_img as litpic,\n<#--内容页动态链接-->\n <#if isDo?? && isDo>\n CONCAT(\'/${modelName}/view.do?id=\', cms_content.id,\'&orderby=${_orderby}\',\'&order=${order!\'ASC\'}\',\'&typeid=${typeid}\') as \"link\",\n <#else>\n CONCAT(category_path,\'/\',cms_content.id,\'.html\') AS \"link\",\n </#if>\ncontent_datetime as \"date\",\ncontent_description as descrip,\ncontent_hit as hit,\ncontent_type as flag,\ncontent_keyword as keyword \nFROM cms_content\nLEFT JOIN cms_category as category ON cms_content.category_id=category.id\nWHERE cms_content.id=${pageTag.preId}\n<#else>\nSELECT\n${select} as id,\n${select} as title,\n${select} as fulltitle,\n${select} as author, \n${select} as source, \n${select} as content,\n${select} as typename,\n${select} as typeid,\n${select} as typelink,\n${select} as litpic,\n${select} as \"link\",\n${select} as \"date\",\n${select} as descrip,\n${select} as hit,\n${select} as flag,\n${select} as keyword\n</#if>', NULL, '文章上一篇', NULL, NULL, NULL, NULL, 0, 1);
  536. INSERT INTO `mdiy_tag` VALUES (9, 'page', 'single', 'select\n<#if !(pageTag.indexUrl??)>\n <#--判断是否有栏目对象,用于搜索不传栏目-->\n <#if column??>\n <#assign path=column.categoryPath/>\n <#else>\n <#assign path=\"\"/>\n </#if>\n <#--总记录数、总页数-->\n (SELECT ${pageTag.total}) as \"total\",\n (SELECT ${pageTag.size}) as \"size\",\n\n <#--记录总数-->\n (SELECT ${pageTag.rcount}) as \"rcount\",\n <#--当前页码-->\n (SELECT ${pageTag.pageNo}) as \"cur\",\n <#--首页-->\n CONCAT(\'${path}\', \'/index.html\') as \"index\",\n <#--上一页-->\n <#if (pageTag.pageNo?eval-1) gt 1>\n CONCAT(\'${path}\',\'/list-${pageTag.pageNo?eval-1}.html\') as \"pre\",\n <#else>\n CONCAT(\'${path}\',\'/index.html\') as \"pre\",\n </#if>\n\n <#--下一页-->\n <#if pageTag.total==1>\n CONCAT(\'${path}\', \'/index.html\') as \"next\",\n CONCAT(\'${path}\', \'/index.html\') as \"last\"\n <#else>\n <#if pageTag.pageNo?eval gte pageTag.total>\n CONCAT(\'${path}\',\'/list-${pageTag.total}.html\') as \"next\",\n <#else>\n CONCAT(\'${path}\',\'/list-${pageTag.pageNo?eval+1}.html\') as \"next\",\n </#if>\n <#--最后一页-->\n CONCAT(\'${path}\',\'/list-${pageTag.total}.html\') as \"last\"\n </#if>\n\n<#else>\n <#--判断是否是搜索页面-->\n \'${pageTag.indexUrl}\' as \"index\",\n \'${pageTag.lastUrl}\' as \"last\",\n \'${pageTag.preUrl}\' as \"pre\",\n \'${pageTag.nextUrl}\' as \"next\",\n (select ${pageTag.total}) as \"total\",\n (select ${pageTag.size}) as \"size\",\n (select ${pageTag.rcount}) as \"rcount\",\n (select ${pageTag.pageNo}) as \"cur\"\n</#if>', NULL, '通用分页', NULL, NULL, NULL, NULL, 0, 1);
  537. INSERT INTO `mdiy_tag` VALUES (10, 'next', 'single', '<#assign select=\"(SELECT \'\')\"/>\n<#if orderby?? >\n <#if orderby==\"date\">\n <#assign _orderby=\"content_datetime\">\n <#elseif orderby==\"updatedate\">\n <#assign _orderby=\"content_updatetime\">\n <#elseif orderby==\"hit\">\n <#assign _orderby=\"content_hit\">\n <#elseif orderby==\"sort\">\n <#assign _orderby=\"content_sort\">\n <#else><#assign _orderby=\"cms_content.id\"></#if>\n <#else>\n <#assign _orderby=\"cms_content.id\">\n </#if>\n<#if pageTag.nextId??>\nSELECT\ncms_content.id as id,\ncontent_title as title,\ncontent_author as author, \ncontent_source as source, \ncontent_details as content,\ncategory.category_title as typename,\ncategory.category_id as typeid,\n(SELECT \'index.html\') as typelink,\ncontent_img as litpic,\n<#--内容页动态链接-->\n <#if isDo?? && isDo>\n CONCAT(\'/${modelName}/view.do?id=\', cms_content.id,\'&orderby=${_orderby}\',\'&order=${order!\'ASC\'}\',\'&typeid=${typeid}\') as \"link\",\n <#else>\n CONCAT(category_path,\'/\',cms_content.id,\'.html\') AS \"link\",\n </#if>\ncontent_datetime as \"date\",\ncontent_description as descrip,\ncontent_hit as hit,\ncontent_type as flag,\ncontent_keyword as keyword \nFROM cms_content\nLEFT JOIN cms_category as category ON cms_content.category_id=category.id\nWHERE cms_content.id=${pageTag.nextId}\n<#else>\nSELECT\n${select} as id,\n${select} as title,\n${select} as fulltitle,\n${select} as author, \n${select} as source, \n${select} as content,\n${select} as typename,\n${select} as typeid,\n${select} as typelink,\n${select} as litpic,\n${select} as \"link\",\n${select} as \"date\",\n${select} as descrip,\n${select} as hit,\n${select} as flag,\n${select} as keyword \n</#if>', NULL, '文章下一篇', NULL, NULL, NULL, NULL, 0, 1);
  538. COMMIT;
  539. -- ----------------------------
  540. -- Table structure for model
  541. -- ----------------------------
  542. DROP TABLE IF EXISTS `model`;
  543. CREATE TABLE `model` (
  544. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id主键',
  545. `model_id` int(22) DEFAULT NULL COMMENT '模块的父模块id',
  546. `model_parent_ids` varchar(300) DEFAULT NULL COMMENT '父级编号集合,从小到大排序',
  547. `model_code` varchar(255) DEFAULT NULL COMMENT '模块编码',
  548. `model_title` varchar(150) DEFAULT NULL COMMENT '模块标题',
  549. `model_url` varchar(255) DEFAULT NULL COMMENT '模块连接地址',
  550. `model_icon` varchar(120) DEFAULT NULL COMMENT '模块图标',
  551. `model_sort` int(11) DEFAULT NULL COMMENT '模块的排序',
  552. `model_ismenu` int(1) DEFAULT '0' COMMENT '模块是否是菜单',
  553. `IS_CHILD` varchar(300) DEFAULT NULL COMMENT '扩展字段',
  554. `model_datetime` datetime DEFAULT NULL,
  555. `UPDATE_BY` varchar(11) DEFAULT NULL COMMENT '更新人',
  556. `UPDATE_DATE` datetime DEFAULT NULL COMMENT '更新时间',
  557. `CREATE_BY` varchar(11) DEFAULT NULL COMMENT '创建人',
  558. `CREATE_DATE` datetime DEFAULT NULL COMMENT '创建时间',
  559. `DEL` int(1) DEFAULT '0' COMMENT '删除标记',
  560. PRIMARY KEY (`id`) USING BTREE,
  561. KEY `idx_model_id` (`model_id`) USING BTREE,
  562. KEY `idx_model_title` (`model_title`,`model_url`),
  563. CONSTRAINT `fk_model_id` FOREIGN KEY (`model_id`) REFERENCES `model` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION
  564. ) ENGINE=InnoDB AUTO_INCREMENT=1764 DEFAULT CHARSET=utf8 COMMENT='模块表';
  565. -- ----------------------------
  566. -- Records of model
  567. -- ----------------------------
  568. BEGIN;
  569. INSERT INTO `model` VALUES (23, NULL, NULL, '01000000', '权限管理', '', 'icon-quanxianguanli', 5, 1, NULL, '2014-09-09 10:12:22', NULL, NULL, NULL, NULL, 0);
  570. INSERT INTO `model` VALUES (84, NULL, NULL, '12000000', '系统设置', '', 'icon-xitongguanli', 3, 1, NULL, '2014-12-19 22:30:24', NULL, NULL, NULL, NULL, 0);
  571. INSERT INTO `model` VALUES (86, 84, '84', '12010000', '应用设置', 'app/-1/edit.do', '', 2, 1, NULL, '2014-12-19 22:31:59', NULL, NULL, NULL, NULL, 0);
  572. INSERT INTO `model` VALUES (87, 84, '84', '12020000', '模版管理', 'template/index.do', '', 1, 1, NULL, '2014-12-19 22:32:50', NULL, NULL, NULL, NULL, 0);
  573. INSERT INTO `model` VALUES (182, 86, '84,86', '12010004', '修改', 'app:update', '', 0, 0, NULL, '2017-09-05 16:14:42', NULL, NULL, NULL, NULL, 0);
  574. INSERT INTO `model` VALUES (183, 23, '23', '01030000', '菜单管理', 'model/index.do', '', 0, 1, NULL, '2017-09-05 13:09:26', NULL, NULL, NULL, NULL, 0);
  575. INSERT INTO `model` VALUES (184, 183, '23,183', '01030001', '查看', 'model:view', '', 0, 0, NULL, '2017-09-05 13:10:43', NULL, NULL, NULL, NULL, 0);
  576. INSERT INTO `model` VALUES (201, 183, '23,183', '01030002', '新增', 'model:save', NULL, 0, 0, NULL, '2019-12-28 14:26:29', NULL, NULL, NULL, NULL, 0);
  577. INSERT INTO `model` VALUES (202, 183, '23,183', '01030004', '修改', 'model:update', NULL, 0, 0, NULL, '2019-12-28 14:26:33', NULL, NULL, NULL, NULL, 0);
  578. INSERT INTO `model` VALUES (204, 87, '84,87', '12020002', '上传', 'template:upload', '', 0, 0, '', '2019-12-28 14:26:37', '', NULL, '', NULL, 0);
  579. INSERT INTO `model` VALUES (406, 23, '23', '406', '角色管理', 'basic/role/index.do', '', 0, 1, NULL, '2019-08-03 19:18:47', NULL, NULL, NULL, NULL, 0);
  580. INSERT INTO `model` VALUES (407, 406, '23,406', '407', '新增', 'role:save', '', 0, 0, NULL, '2019-08-03 19:19:10', NULL, NULL, NULL, NULL, 0);
  581. INSERT INTO `model` VALUES (408, 406, '23,406', '408', '修改', 'role:update', '', 0, 0, NULL, '2019-08-03 19:19:34', NULL, NULL, NULL, NULL, 0);
  582. INSERT INTO `model` VALUES (409, 406, '23,406', '409', '删除', 'role:del', '', 0, 0, NULL, '2019-08-03 19:19:59', NULL, NULL, NULL, NULL, 0);
  583. INSERT INTO `model` VALUES (411, 23, '23', '411', '管理员管理', 'basic/manager/index.do', '', 0, 1, NULL, '2019-08-04 12:54:38', NULL, NULL, NULL, NULL, 0);
  584. INSERT INTO `model` VALUES (412, 411, '23,411', '412', '查看', 'manager:view', '', 0, 0, NULL, '2019-08-04 12:56:13', NULL, NULL, NULL, NULL, 0);
  585. INSERT INTO `model` VALUES (663, 411, '23,411', '15737980803547570', '删除', 'manager:del', '', 0, 0, NULL, '2019-11-19 18:19:35', NULL, NULL, NULL, NULL, 0);
  586. INSERT INTO `model` VALUES (664, 411, '23,411', '15737980853527702', '更新', 'manager:update', '', 0, 0, NULL, '2019-11-19 18:21:08', NULL, NULL, NULL, NULL, 0);
  587. INSERT INTO `model` VALUES (665, 411, '23,411', '15735981803267702', '新增', 'manager:save', '', 0, 0, NULL, '2019-11-19 18:21:42', NULL, NULL, NULL, NULL, 0);
  588. INSERT INTO `model` VALUES (668, 183, '23,183', '668', '删除', 'model:del', '', 0, 0, NULL, '2019-11-19 18:35:49', NULL, NULL, NULL, NULL, 0);
  589. INSERT INTO `model` VALUES (672, 87, '84,87', '5434345', '删除', 'template:del', '', 0, 0, '', '2019-11-19 19:05:09', '', NULL, '', NULL, 0);
  590. INSERT INTO `model` VALUES (673, 87, '84,87', '452435345', '更新', 'template:update', '', 0, 0, '', '2019-11-19 19:05:35', '', NULL, '', NULL, 0);
  591. INSERT INTO `model` VALUES (685, 84, '84', '65123656532', '系统日志', 'basic/log/index.do', '', 0, 1, NULL, '2019-11-22 21:13:50', NULL, NULL, NULL, NULL, 0);
  592. INSERT INTO `model` VALUES (686, 685, '84,685', '351463145634', '查看', 'basic:log:view', '', 0, 0, NULL, '2019-11-22 21:14:24', NULL, NULL, NULL, NULL, 0);
  593. INSERT INTO `model` VALUES (706, NULL, NULL, '02000000', '内容管理', '', 'icon-neirongguanli', 5, 1, NULL, '2019-11-23 20:14:59', NULL, NULL, NULL, NULL, 0);
  594. INSERT INTO `model` VALUES (707, 706, '706', '02980000', '文章管理', 'cms/content/index.do', '', 3, 1, NULL, '2019-11-23 20:16:25', NULL, NULL, NULL, NULL, 0);
  595. INSERT INTO `model` VALUES (708, 706, '706', '02990000', '栏目管理', 'cms/category/index.do', '', 2, 1, NULL, '2019-11-23 20:16:50', NULL, NULL, NULL, NULL, 0);
  596. INSERT INTO `model` VALUES (709, 706, '706', '02020000', '静态化', 'cms/generate/index.do', '', 1, 1, NULL, '2019-11-23 20:17:15', NULL, NULL, NULL, NULL, 0);
  597. INSERT INTO `model` VALUES (710, 709, '706,709', '02020004', '生成文章', 'cms:generate:article', '', 0, 0, NULL, '2019-11-23 20:17:39', NULL, NULL, NULL, NULL, 0);
  598. INSERT INTO `model` VALUES (711, 709, '706,709', '02020003', '生成栏目', 'cms:generate:column', '', 0, 0, NULL, '2019-11-23 20:18:05', NULL, NULL, NULL, NULL, 0);
  599. INSERT INTO `model` VALUES (713, 709, '706,709', '02020001', '查看', 'cms:generate:view', '', 0, 0, NULL, '2019-11-23 20:18:48', NULL, NULL, NULL, NULL, 0);
  600. INSERT INTO `model` VALUES (714, 709, '706,709', '56454656', '生成主页', 'cms:generate:index', '', 0, 0, NULL, '2019-11-23 20:20:10', NULL, NULL, NULL, NULL, 0);
  601. INSERT INTO `model` VALUES (715, 708, '706,708', '02990004', '新增', 'cms:category:save', '', 0, 0, NULL, '2019-11-23 20:20:42', NULL, NULL, NULL, NULL, 0);
  602. INSERT INTO `model` VALUES (716, 708, '706,708', '02990003', '修改', 'cms:category:update', '', 0, 0, NULL, '2019-11-23 20:21:36', NULL, NULL, NULL, NULL, 0);
  603. INSERT INTO `model` VALUES (717, 708, '706,708', '02990001', '查看', 'cms:category:view', '', 0, 0, NULL, '2019-11-23 20:22:05', NULL, NULL, NULL, NULL, 0);
  604. INSERT INTO `model` VALUES (718, 707, '706,707', '02980002', '新增', 'cms:content:save', '', 0, 0, NULL, '2019-11-23 20:22:35', NULL, NULL, NULL, NULL, 0);
  605. INSERT INTO `model` VALUES (719, 707, '706,707', '02980004', '修改', 'cms:content:update', '', 0, 0, NULL, '2019-11-23 20:22:57', NULL, NULL, NULL, NULL, 0);
  606. INSERT INTO `model` VALUES (720, 707, '706,707', '02980001', '查看', 'cms:content:view', '', 0, 0, NULL, '2019-11-23 20:23:15', NULL, NULL, NULL, NULL, 0);
  607. INSERT INTO `model` VALUES (721, 707, '706,707', '721', '删除', 'cms:content:del', '', 0, 0, NULL, '2019-11-23 21:02:28', NULL, NULL, NULL, NULL, 0);
  608. INSERT INTO `model` VALUES (1653, 708, '706,708', '1320', '删除', 'cms:category:del', '', 0, 0, NULL, '2020-09-22 07:41:21', NULL, NULL, NULL, NULL, 0);
  609. INSERT INTO `model` VALUES (1700, NULL, NULL, '16197622071887865', '自定义模块', '', 'icon-zhanqun', 0, 1, '', '2021-05-25 22:07:10', '57', '2022-02-28 09:40:50', '', NULL, 0);
  610. INSERT INTO `model` VALUES (1701, 1700, '1700', '16197622071885990', '自定义页面', 'mdiy/page/index.do', '', 0, 1, NULL, '2021-05-25 22:07:10', NULL, NULL, NULL, NULL, 0);
  611. INSERT INTO `model` VALUES (1702, 1701, '1700,1701', '16197622071882306', '新增', 'mdiy:page:save', NULL, 0, 0, NULL, '2021-05-25 22:07:10', NULL, NULL, NULL, NULL, 0);
  612. INSERT INTO `model` VALUES (1703, 1701, '1700,1701', '16197622071889774', '删除', 'mdiy:page:del', NULL, 0, 0, NULL, '2021-05-25 22:07:10', NULL, NULL, NULL, NULL, 0);
  613. INSERT INTO `model` VALUES (1704, 1701, '1700,1701', '16197622071883980', '更新', 'mdiy:page:update', NULL, 0, 0, NULL, '2021-05-25 22:07:10', NULL, NULL, NULL, NULL, 0);
  614. INSERT INTO `model` VALUES (1705, 1701, '1700,1701', '16197622071888834', '查看', 'mdiy:page:view', NULL, 0, 0, NULL, '2021-05-25 22:07:10', NULL, NULL, NULL, NULL, 0);
  615. INSERT INTO `model` VALUES (1706, 1701, '1700,1701', '161976235700096088', '导入', 'mdiy:form:importJson', '', 0, 0, NULL, '2021-05-25 22:07:10', NULL, NULL, NULL, NULL, 0);
  616. INSERT INTO `model` VALUES (1707, 1700, '1700', '16197622071880623', '自定义模型', 'mdiy/model/index.do', '', 0, 1, NULL, '2021-05-25 22:07:10', NULL, NULL, NULL, NULL, 0);
  617. INSERT INTO `model` VALUES (1708, 1707, '1700,1707', '16197622071887303', '新增', 'mdiy:model:save', NULL, 0, 0, NULL, '2021-05-25 22:07:10', NULL, NULL, NULL, NULL, 0);
  618. INSERT INTO `model` VALUES (1709, 1707, '1700,1707', '16197622071881168', '删除', 'mdiy:model:del', NULL, 0, 0, NULL, '2021-05-25 22:07:10', NULL, NULL, NULL, NULL, 0);
  619. INSERT INTO `model` VALUES (1710, 1707, '1700,1707', '16197622071881215', '更新', 'mdiy:model:update', NULL, 0, 0, NULL, '2021-05-25 22:07:10', NULL, NULL, NULL, NULL, 0);
  620. INSERT INTO `model` VALUES (1711, 1707, '1700,1707', '16197622071884291', '查看', 'mdiy:model:view', NULL, 0, 0, NULL, '2021-05-25 22:07:10', NULL, NULL, NULL, NULL, 0);
  621. INSERT INTO `model` VALUES (1712, 1707, '1700,1707', '161976234500028132', '导入', 'mdiy:model:importJson', '', 0, 0, NULL, '2021-05-25 22:07:10', NULL, NULL, NULL, NULL, 0);
  622. INSERT INTO `model` VALUES (1713, 1700, '1700', '16197622071884456', '自定义配置', 'mdiy/config/index.do', '', 0, 1, NULL, '2021-05-25 22:07:10', NULL, NULL, NULL, NULL, 0);
  623. INSERT INTO `model` VALUES (1714, 1713, '1700,1713', '16197622071881449', '新增', 'mdiy:config:save', NULL, 0, 0, NULL, '2021-05-25 22:07:10', NULL, NULL, NULL, NULL, 0);
  624. INSERT INTO `model` VALUES (1715, 1713, '1700,1713', '16197622071889126', '删除', 'mdiy:config:del', NULL, 0, 0, NULL, '2021-05-25 22:07:10', NULL, NULL, NULL, NULL, 0);
  625. INSERT INTO `model` VALUES (1716, 1713, '1700,1713', '16197622071888369', '更新', 'mdiy:config:update', NULL, 0, 0, NULL, '2021-05-25 22:07:10', NULL, NULL, NULL, NULL, 0);
  626. INSERT INTO `model` VALUES (1717, 1713, '1700,1713', '16197622071882134', '查看', 'mdiy:config:view', NULL, 0, 0, NULL, '2021-05-25 22:07:10', NULL, NULL, NULL, NULL, 0);
  627. INSERT INTO `model` VALUES (1718, 1713, '1700,1713', '161976231700026503', '导入', 'mdiy:config:importJson', '', 0, 0, NULL, '2021-05-25 22:07:10', NULL, NULL, NULL, NULL, 0);
  628. INSERT INTO `model` VALUES (1719, 1700, '1700', '15725929177747726', '自定义字典', 'mdiy/dict/index.do', '', 0, 1, NULL, '2021-05-25 22:07:10', '0', NULL, '0', NULL, 0);
  629. INSERT INTO `model` VALUES (1720, 1719, '1700,1719', '15725929177745034', '查看', 'mdiy:dict:view', NULL, 0, 0, NULL, '2021-05-25 22:07:10', '0', NULL, '0', NULL, 0);
  630. INSERT INTO `model` VALUES (1721, 1719, '1700,1719', '15725929177742474', '新增', 'mdiy:dict:save', NULL, 0, 0, NULL, '2021-05-25 22:07:10', '0', NULL, '0', NULL, 0);
  631. INSERT INTO `model` VALUES (1722, 1719, '1700,1719', '15725929177744138', '修改', 'mdiy:dict:update', NULL, 0, 0, NULL, '2021-05-25 22:07:10', '0', NULL, '0', NULL, 0);
  632. INSERT INTO `model` VALUES (1723, 1719, '1700,1719', '15725929177748034', '删除', 'mdiy:dict:del', NULL, 0, 0, NULL, '2021-05-25 22:07:10', '0', NULL, '0', NULL, 0);
  633. INSERT INTO `model` VALUES (1724, 1700, '1700', '162034834200049578', '自定义业务', 'mdiy/form/index.do', 'icon-caidan', 0, 1, NULL, '2021-05-25 22:07:10', NULL, NULL, NULL, NULL, 0);
  634. INSERT INTO `model` VALUES (1725, 1724, '1700,1724', '162034839300098062', '导入', 'mdiy:form:importJson', '', 0, 0, NULL, '2021-05-25 22:07:10', NULL, NULL, NULL, NULL, 0);
  635. INSERT INTO `model` VALUES (1726, 1724, '1700,1724', '162034842600047746', '删除', 'mdiy:form:del', '', 0, 0, NULL, '2021-05-25 22:07:10', NULL, NULL, NULL, NULL, 0);
  636. INSERT INTO `model` VALUES (1727, 1724, '1700,1724', '16203484400006602', '查看', 'mdiy:form:view', '', 0, 0, NULL, '2021-05-25 22:07:10', NULL, NULL, NULL, NULL, 0);
  637. INSERT INTO `model` VALUES (1728, 1724, '1700,1724', '162034845600099530', '保存', 'mdiy:form:save', '', 0, 0, NULL, '2021-05-25 22:07:10', NULL, NULL, NULL, NULL, 0);
  638. INSERT INTO `model` VALUES (1729, 1724, '1700,1724', '162034847100023820', '更新', 'mdiy:form:update', '', 0, 0, NULL, '2021-05-25 22:07:10', NULL, NULL, NULL, NULL, 0);
  639. INSERT INTO `model` VALUES (1730, 1724, '1700,1724', '162143180100032708', '新增业务数据', 'mdiy:formData:save', '', 0, 0, NULL, '2021-05-25 22:07:10', NULL, NULL, NULL, NULL, 0);
  640. INSERT INTO `model` VALUES (1731, 1724, '1700,1724', '162143181700031623', '删除业务数据', 'mdiy:formData:del', 'icon-caidan', 0, 0, NULL, '2021-05-25 22:07:10', NULL, NULL, NULL, NULL, 0);
  641. INSERT INTO `model` VALUES (1732, 1724, '1700,1724', '162143576500025187', '更新业务数据', 'mdiy:formData:update', 'icon-caidan', 0, 0, NULL, '2021-05-25 22:07:10', NULL, NULL, NULL, NULL, 0);
  642. INSERT INTO `model` VALUES (1733, 1713, '1700,1713', '', '更新数据', 'mdiy:configData:update', '', 0, 0, '', '2021-12-28 22:05:33', '57', '2021-12-28 22:06:19', '', '2021-12-28 22:05:33', 0);
  643. COMMIT;
  644. -- ----------------------------
  645. -- Table structure for people
  646. -- ----------------------------
  647. DROP TABLE IF EXISTS `people`;
  648. CREATE TABLE `people` (
  649. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id主键',
  650. `people_name` varchar(30) DEFAULT NULL COMMENT '账号',
  651. `people_password` varchar(50) DEFAULT NULL COMMENT '密码',
  652. `people_ip` varchar(100) DEFAULT NULL COMMENT '用户登录ip',
  653. `people_phone` varchar(30) DEFAULT NULL COMMENT '手机号码',
  654. `people_phonecheck` int(1) DEFAULT '0' COMMENT '1手机验证通过',
  655. `people_mail` varchar(120) DEFAULT NULL COMMENT '用户邮箱',
  656. `people_maillcheck` int(1) DEFAULT '0' COMMENT '1邮箱验证通过',
  657. `people_state` int(2) DEFAULT '0' COMMENT '用户状态',
  658. `people_code` varchar(15) DEFAULT NULL COMMENT '随机验证码',
  659. `people_codesenddate` datetime DEFAULT NULL COMMENT '发送验证码时间',
  660. `people_datetime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '注册时间',
  661. `UPDATE_BY` int(11) DEFAULT NULL COMMENT '更新人',
  662. `UPDATE_DATE` datetime DEFAULT NULL COMMENT '更新时间',
  663. `CREATE_BY` int(11) DEFAULT NULL COMMENT '创建人',
  664. `CREATE_DATE` datetime DEFAULT NULL COMMENT '创建时间',
  665. `DEL` int(1) DEFAULT '0' COMMENT '删除标记',
  666. PRIMARY KEY (`id`) USING BTREE
  667. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='户用基础表';
  668. -- ----------------------------
  669. -- Records of people
  670. -- ----------------------------
  671. BEGIN;
  672. COMMIT;
  673. -- ----------------------------
  674. -- Table structure for role
  675. -- ----------------------------
  676. DROP TABLE IF EXISTS `role`;
  677. CREATE TABLE `role` (
  678. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id主键',
  679. `role_name` varchar(30) DEFAULT NULL COMMENT '角色名',
  680. `UPDATE_BY` varchar(11) DEFAULT NULL COMMENT '更新人',
  681. `UPDATE_DATE` datetime DEFAULT NULL COMMENT '更新时间',
  682. `CREATE_BY` varchar(11) DEFAULT NULL COMMENT '创建人',
  683. `CREATE_DATE` datetime DEFAULT NULL COMMENT '创建时间',
  684. `DEL` int(1) DEFAULT '0' COMMENT '删除标记',
  685. `NOT_DEL` int(1) DEFAULT '0' COMMENT '1为不能删除,主要用于系统默认数据,0为一般数据,主要是前端控制',
  686. PRIMARY KEY (`id`) USING BTREE
  687. ) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8 COMMENT='角色表';
  688. -- ----------------------------
  689. -- Records of role
  690. -- ----------------------------
  691. BEGIN;
  692. INSERT INTO `role` VALUES (48, '默认角色', '57', '2022-02-27 10:50:25', NULL, NULL, 0, 1);
  693. COMMIT;
  694. -- ----------------------------
  695. -- Table structure for role_model
  696. -- ----------------------------
  697. DROP TABLE IF EXISTS `role_model`;
  698. CREATE TABLE `role_model` (
  699. `model_id` int(22) DEFAULT NULL COMMENT '模块编号',
  700. `role_id` int(22) DEFAULT NULL COMMENT '角色编号',
  701. KEY `fk_model_id` (`model_id`) USING BTREE,
  702. KEY `fk_role_id` (`role_id`) USING BTREE,
  703. CONSTRAINT `fk_rm_model_id` FOREIGN KEY (`model_id`) REFERENCES `model` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION,
  704. CONSTRAINT `fk_rm_role_id` FOREIGN KEY (`role_id`) REFERENCES `role` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION
  705. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='角色模块关联表';
  706. -- ----------------------------
  707. -- Records of role_model
  708. -- ----------------------------
  709. BEGIN;
  710. INSERT INTO `role_model` VALUES (182, 48);
  711. INSERT INTO `role_model` VALUES (204, 48);
  712. INSERT INTO `role_model` VALUES (672, 48);
  713. INSERT INTO `role_model` VALUES (673, 48);
  714. INSERT INTO `role_model` VALUES (184, 48);
  715. INSERT INTO `role_model` VALUES (201, 48);
  716. INSERT INTO `role_model` VALUES (202, 48);
  717. INSERT INTO `role_model` VALUES (668, 48);
  718. INSERT INTO `role_model` VALUES (407, 48);
  719. INSERT INTO `role_model` VALUES (408, 48);
  720. INSERT INTO `role_model` VALUES (409, 48);
  721. INSERT INTO `role_model` VALUES (412, 48);
  722. INSERT INTO `role_model` VALUES (663, 48);
  723. INSERT INTO `role_model` VALUES (664, 48);
  724. INSERT INTO `role_model` VALUES (665, 48);
  725. INSERT INTO `role_model` VALUES (686, 48);
  726. INSERT INTO `role_model` VALUES (718, 48);
  727. INSERT INTO `role_model` VALUES (719, 48);
  728. INSERT INTO `role_model` VALUES (720, 48);
  729. INSERT INTO `role_model` VALUES (721, 48);
  730. INSERT INTO `role_model` VALUES (715, 48);
  731. INSERT INTO `role_model` VALUES (716, 48);
  732. INSERT INTO `role_model` VALUES (717, 48);
  733. INSERT INTO `role_model` VALUES (1653, 48);
  734. INSERT INTO `role_model` VALUES (710, 48);
  735. INSERT INTO `role_model` VALUES (711, 48);
  736. INSERT INTO `role_model` VALUES (713, 48);
  737. INSERT INTO `role_model` VALUES (714, 48);
  738. INSERT INTO `role_model` VALUES (1702, 48);
  739. INSERT INTO `role_model` VALUES (1703, 48);
  740. INSERT INTO `role_model` VALUES (1704, 48);
  741. INSERT INTO `role_model` VALUES (1705, 48);
  742. INSERT INTO `role_model` VALUES (1706, 48);
  743. INSERT INTO `role_model` VALUES (1708, 48);
  744. INSERT INTO `role_model` VALUES (1709, 48);
  745. INSERT INTO `role_model` VALUES (1710, 48);
  746. INSERT INTO `role_model` VALUES (1711, 48);
  747. INSERT INTO `role_model` VALUES (1712, 48);
  748. INSERT INTO `role_model` VALUES (1714, 48);
  749. INSERT INTO `role_model` VALUES (1715, 48);
  750. INSERT INTO `role_model` VALUES (1716, 48);
  751. INSERT INTO `role_model` VALUES (1717, 48);
  752. INSERT INTO `role_model` VALUES (1718, 48);
  753. INSERT INTO `role_model` VALUES (1733, 48);
  754. INSERT INTO `role_model` VALUES (1720, 48);
  755. INSERT INTO `role_model` VALUES (1721, 48);
  756. INSERT INTO `role_model` VALUES (1722, 48);
  757. INSERT INTO `role_model` VALUES (1723, 48);
  758. INSERT INTO `role_model` VALUES (1725, 48);
  759. INSERT INTO `role_model` VALUES (1726, 48);
  760. INSERT INTO `role_model` VALUES (1727, 48);
  761. INSERT INTO `role_model` VALUES (1728, 48);
  762. INSERT INTO `role_model` VALUES (1729, 48);
  763. INSERT INTO `role_model` VALUES (1730, 48);
  764. INSERT INTO `role_model` VALUES (1731, 48);
  765. INSERT INTO `role_model` VALUES (1732, 48);
  766. INSERT INTO `role_model` VALUES (84, 48);
  767. INSERT INTO `role_model` VALUES (86, 48);
  768. INSERT INTO `role_model` VALUES (87, 48);
  769. INSERT INTO `role_model` VALUES (23, 48);
  770. INSERT INTO `role_model` VALUES (183, 48);
  771. INSERT INTO `role_model` VALUES (406, 48);
  772. INSERT INTO `role_model` VALUES (411, 48);
  773. INSERT INTO `role_model` VALUES (685, 48);
  774. INSERT INTO `role_model` VALUES (706, 48);
  775. INSERT INTO `role_model` VALUES (707, 48);
  776. INSERT INTO `role_model` VALUES (708, 48);
  777. INSERT INTO `role_model` VALUES (709, 48);
  778. INSERT INTO `role_model` VALUES (1700, 48);
  779. INSERT INTO `role_model` VALUES (1701, 48);
  780. INSERT INTO `role_model` VALUES (1707, 48);
  781. INSERT INTO `role_model` VALUES (1713, 48);
  782. INSERT INTO `role_model` VALUES (1719, 48);
  783. INSERT INTO `role_model` VALUES (1724, 48);
  784. COMMIT;
  785. SET FOREIGN_KEY_CHECKS = 1;