mcms-5.2.sql 150 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919
  1. /*
  2. Navicat Premium Data Transfer
  3. Source Server : 192.168.0.8
  4. Source Server Type : MySQL
  5. Source Server Version : 50732
  6. Source Host : 192.168.0.8:3316
  7. Source Schema : mcms-5.2
  8. Target Server Type : MySQL
  9. Target Server Version : 50732
  10. File Encoding : 65001
  11. Date: 05/12/2020 17:37:42
  12. */
  13. SET NAMES utf8mb4;
  14. SET FOREIGN_KEY_CHECKS = 0;
  15. -- ----------------------------
  16. -- Table structure for app
  17. -- ----------------------------
  18. DROP TABLE IF EXISTS `app`;
  19. CREATE TABLE `app` (
  20. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '站点id',
  21. `app_name` varchar(60) NOT NULL COMMENT '站点名称',
  22. `app_url` varchar(200) NOT NULL COMMENT '站点域名,多个回车换行显示',
  23. `app_logo` varchar(4000) DEFAULT NULL COMMENT '网站logo',
  24. `app_keyword` varchar(500) DEFAULT NULL COMMENT '站点关键字',
  25. `app_copyright` varchar(500) DEFAULT NULL COMMENT '站点版权信息',
  26. `app_style` varchar(50) DEFAULT NULL COMMENT '站点风格',
  27. `app_description` varchar(500) DEFAULT NULL COMMENT '描述',
  28. `app_pay` varchar(300) DEFAULT NULL COMMENT '费用清单',
  29. `app_state` int(1) unsigned NOT NULL DEFAULT '0' COMMENT '0运行中 1已停止 ',
  30. `app_datetime` datetime DEFAULT NULL COMMENT '创建时间',
  31. `app_pay_date` datetime DEFAULT NULL COMMENT '应用续费时间',
  32. `app_dir` varchar(10) DEFAULT NULL COMMENT '网站生成的目录',
  33. `update_date` datetime DEFAULT NULL COMMENT '修改时间',
  34. `update_by` int(11) DEFAULT NULL COMMENT '修改人',
  35. `create_date` datetime DEFAULT NULL COMMENT '创建时间',
  36. `create_by` int(11) DEFAULT NULL,
  37. `del` int(1) DEFAULT NULL,
  38. PRIMARY KEY (`id`) USING BTREE
  39. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='应用表';
  40. -- ----------------------------
  41. -- Records of app
  42. -- ----------------------------
  43. BEGIN;
  44. INSERT INTO `app` VALUES (1, 'MCMS-OPEN', 'http://localhost:8080\r\n', '[{\"path\":\"/upload/1/appLogo/1578375538540.jpg\",\"url\":\"/upload/1/appLogo/1578375538540.jpg\",\"uid\":1604106086351,\"status\":\"success\"}]', '铭飞MCMS', '版权所有 ©铭飞科技有限公司2012-2019 保留一切权利。', 'default', '铭飞MCMS', '', 0, NULL, '2019-11-17 04:00:00', 'a', NULL, NULL, NULL, NULL, NULL);
  45. COMMIT;
  46. -- ----------------------------
  47. -- Table structure for cms_category
  48. -- ----------------------------
  49. DROP TABLE IF EXISTS `cms_category`;
  50. CREATE TABLE `cms_category` (
  51. `id` bigint(20) unsigned NOT NULL,
  52. `category_id` bigint(20) unsigned DEFAULT NULL COMMENT '所属栏目',
  53. `leaf` int(1) DEFAULT NULL COMMENT '是否是叶子节点',
  54. `top_id` bigint(20) DEFAULT NULL COMMENT '顶级id',
  55. `dict_id` int(11) DEFAULT NULL COMMENT '字典对应编号',
  56. `mdiy_model_id` int(11) DEFAULT NULL COMMENT '栏目管理的内容模型id',
  57. `category_parent_ids` varchar(255) DEFAULT NULL COMMENT '父类型编号,多个id逗号',
  58. `category_title` varchar(255) DEFAULT NULL COMMENT '栏目管理名称',
  59. `category_img` varchar(2000) DEFAULT NULL COMMENT '缩略图',
  60. `category_flag` varchar(255) DEFAULT NULL COMMENT '栏目属性',
  61. `category_descrip` varchar(500) DEFAULT NULL COMMENT '栏目管理描述',
  62. `category_keyword` varchar(300) DEFAULT NULL COMMENT '栏目管理关键字',
  63. `category_path` varchar(255) DEFAULT NULL COMMENT '栏目路径',
  64. `category_diy_url` varchar(255) DEFAULT NULL COMMENT '自定义链接',
  65. `category_url` varchar(50) DEFAULT NULL COMMENT '内容模板',
  66. `category_list_url` varchar(50) DEFAULT NULL COMMENT '列表模板',
  67. `category_type` varchar(10) DEFAULT NULL COMMENT '栏目管理属性',
  68. `category_pinyin` varchar(255) DEFAULT NULL COMMENT '栏目拼音',
  69. `category_datetime` datetime DEFAULT NULL COMMENT '类别发布时间',
  70. `category_sort` int(11) DEFAULT NULL COMMENT '自定义顺序',
  71. `update_date` datetime DEFAULT NULL COMMENT '修改时间',
  72. `update_by` int(11) DEFAULT NULL COMMENT '修改人',
  73. `create_date` datetime DEFAULT NULL COMMENT '创建时间',
  74. `create_by` int(11) DEFAULT NULL COMMENT '创建人',
  75. `del` int(1) DEFAULT '0' COMMENT '删除标记',
  76. PRIMARY KEY (`id`) USING BTREE
  77. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='分类';
  78. -- ----------------------------
  79. -- Records of cms_category
  80. -- ----------------------------
  81. BEGIN;
  82. INSERT INTO `cms_category` VALUES (1329256979346038786, NULL, 1, 0, NULL, NULL, NULL, '首页', '[]', 'n', '', '', '/shouye', '', '', '', '3', 'shouye', NULL, 0, '2020-12-04 19:36:55', 57, '2020-11-19 10:55:35', 57, 0);
  83. INSERT INTO `cms_category` VALUES (1329257213283344385, NULL, 0, 0, NULL, NULL, NULL, '公司产品', '[]', 'n', '', '', '/product', '', 'product-detail.htm', 'product-list.htm', '1', 'product', NULL, 0, '2020-12-04 20:00:14', 57, '2020-11-19 10:56:31', 57, 0);
  84. INSERT INTO `cms_category` VALUES (1329257282518720513, NULL, 0, 0, NULL, NULL, NULL, '新闻动态', '[]', 'n', '', '', '/news', '', 'news-detail.htm', 'news-list.htm', '1', 'news', NULL, 0, '2020-12-05 02:24:38', 57, '2020-11-19 10:56:47', 57, 0);
  85. INSERT INTO `cms_category` VALUES (1329257498923835394, NULL, 0, 0, NULL, NULL, NULL, '关于我们', '[]', 'd', '', '', '/gywm', '', 'about.htm', '', '2', 'gywm', NULL, 0, '2020-11-19 18:32:52', 57, '2020-11-19 10:57:39', 57, 0);
  86. INSERT INTO `cms_category` VALUES (1329257594591715329, 1329257498923835394, 1, 1329257498923835394, NULL, NULL, '1329257498923835394', '联系我们', '[]', 'd', '', '', '/gywm/lianxiwomen', '', 'about.htm', '', '2', 'lianxiwomen', NULL, 0, '2020-11-19 18:33:02', 57, '2020-11-19 10:58:02', 57, 0);
  87. INSERT INTO `cms_category` VALUES (1329257757913718785, 1329257213283344385, 1, 1329257213283344385, NULL, NULL, '1329257213283344385', '开源产品', '[]', '', '', '', '/product/kycp', '', 'product-detail1.htm', 'product.htm', '1', 'kycp', NULL, 0, '2020-12-04 21:50:49', 57, '2020-11-19 10:58:41', 57, 0);
  88. INSERT INTO `cms_category` VALUES (1329257820769558530, 1329257213283344385, 1, 1329257213283344385, NULL, NULL, '1329257213283344385', '行业产品', '[]', '', '', '', '/product/hycp', '', 'product-detail1.htm', 'product.htm', '1', 'hycp', NULL, 0, '2020-11-19 18:31:23', 57, '2020-11-19 10:58:56', 57, 0);
  89. INSERT INTO `cms_category` VALUES (1329258628990967809, 1329257282518720513, 1, 1329257282518720513, NULL, NULL, '1329257282518720513', '公司动态', '[]', '', '', '', '/news/gsdt', '', 'news-detail.htm', 'news-list.htm', '1', 'gsdt', NULL, 0, '2020-11-19 18:32:23', 57, '2020-11-19 11:02:08', 57, 0);
  90. INSERT INTO `cms_category` VALUES (1329258744783118337, 1329257282518720513, 1, 1329257282518720513, NULL, NULL, '1329257282518720513', '行业动态', '[]', '', '', '', '/news/xingyedongtai', '', 'news-detail.htm', 'news-list.htm', '1', 'xingyedongtai', NULL, 0, '2020-11-19 18:32:43', 57, '2020-11-19 11:02:36', 57, 0);
  91. INSERT INTO `cms_category` VALUES (1329259260493766658, 1329257498923835394, 1, 1329257498923835394, NULL, NULL, '1329257498923835394', '公司介绍', '[]', '', '', '', '/gywm/gongsijieshao', '', 'about.htm', '', '2', 'gongsijieshao', NULL, 0, '2020-11-19 18:33:10', 57, '2020-11-19 11:04:39', 57, 0);
  92. INSERT INTO `cms_category` VALUES (1329316146811314177, 1329257213283344385, 1, 1329257213283344385, NULL, NULL, '1329257213283344385', '平台产品', '[]', '', '', '', '/product/pingtaichanpin', '', 'product-detail1.htm', 'product.htm', '1', 'pingtaichanpin', NULL, 0, '2020-11-19 18:31:37', 57, '2020-11-19 14:50:42', 57, 0);
  93. INSERT INTO `cms_category` VALUES (1329357285870346241, NULL, 1, 0, NULL, NULL, NULL, '幻灯', '[]', '', '', '', '/huandeng', '', 'news-detail.htm', 'news-list.htm', '1', 'huandeng', NULL, 0, '2020-11-19 18:33:47', 57, '2020-11-19 17:34:10', 57, 0);
  94. COMMIT;
  95. -- ----------------------------
  96. -- Table structure for cms_content
  97. -- ----------------------------
  98. DROP TABLE IF EXISTS `cms_content`;
  99. CREATE TABLE `cms_content` (
  100. `id` bigint(20) unsigned NOT NULL,
  101. `category_id` bigint(20) unsigned DEFAULT NULL COMMENT '所属栏目',
  102. `content_details` text COMMENT '文章内容',
  103. `content_title` varchar(255) DEFAULT NULL COMMENT '文章标题',
  104. `content_url` varchar(255) DEFAULT NULL COMMENT '文章跳转链接地址',
  105. `content_keyword` varchar(255) DEFAULT NULL COMMENT '关键字',
  106. `content_description` varchar(400) DEFAULT NULL COMMENT '描述',
  107. `content_img` varchar(1000) DEFAULT NULL COMMENT '文章缩略图',
  108. `content_source` varchar(255) DEFAULT NULL COMMENT '文章来源',
  109. `content_author` varchar(255) DEFAULT NULL COMMENT '文章作者',
  110. `content_display` varchar(10) DEFAULT NULL COMMENT '是否显示',
  111. `content_type` varchar(100) DEFAULT NULL COMMENT '文章类型',
  112. `content_datetime` datetime DEFAULT NULL COMMENT '发布时间',
  113. `content_sort` int(11) DEFAULT NULL COMMENT '自定义顺序',
  114. `content_hit` int(22) DEFAULT NULL COMMENT '点击次数',
  115. `update_date` datetime DEFAULT NULL COMMENT '修改时间',
  116. `update_by` int(11) DEFAULT NULL COMMENT '修改人',
  117. `create_date` datetime DEFAULT NULL COMMENT '创建时间',
  118. `create_by` int(11) DEFAULT NULL COMMENT '创建人',
  119. `del` int(1) DEFAULT '0' COMMENT '删除标记',
  120. PRIMARY KEY (`id`) USING BTREE,
  121. KEY `fk_category_id` (`category_id`),
  122. CONSTRAINT `fk_category_id` FOREIGN KEY (`category_id`) REFERENCES `cms_category` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION
  123. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='文章';
  124. -- ----------------------------
  125. -- Records of cms_content
  126. -- ----------------------------
  127. BEGIN;
  128. INSERT INTO `cms_content` VALUES (1329315330427789313, 1329257757913718785, '', 'MCms内容插件', NULL, '', '', '[]', '', '', '0', '', '2020-11-19 14:47:15', 0, NULL, NULL, 0, '2020-11-19 14:47:27', 57, 0);
  129. INSERT INTO `cms_content` VALUES (1329315378351906818, 1329257757913718785, '', 'MPeople会员插件', NULL, '', '', '[]', '', '', '0', '', '2020-11-19 14:47:29', 0, NULL, NULL, 0, '2020-11-19 14:47:38', 57, 0);
  130. INSERT INTO `cms_content` VALUES (1329315424476667905, 1329257757913718785, '', 'MDiy自定义插件', NULL, '', '', '[]', '', '', '0', '', '2020-11-19 14:47:40', 0, NULL, NULL, 0, '2020-11-19 14:47:49', 57, 0);
  131. INSERT INTO `cms_content` VALUES (1329315860382294018, 1329257820769558530, '', 'MEC工程造价咨询管理软件', NULL, '', '', '[]', '', '', '0', '', '2020-11-19 14:49:22', 0, NULL, NULL, 0, '2020-11-19 14:49:33', 57, 0);
  132. INSERT INTO `cms_content` VALUES (1329315928002863105, 1329257820769558530, '', 'BIMCms施工管理软件', NULL, '', '', '[]', '', '', '0', '', '2020-11-19 14:49:35', 0, NULL, NULL, 0, '2020-11-19 14:49:49', 57, 0);
  133. INSERT INTO `cms_content` VALUES (1329316558960402434, 1329316146811314177, '', 'PM项目管理', NULL, '', '', '[]', '', '', '0', '', '2020-11-19 14:52:08', 0, NULL, NULL, 0, '2020-11-19 14:52:20', 57, 0);
  134. INSERT INTO `cms_content` VALUES (1329316838384934914, 1329316146811314177, '', 'Code代码生成器', NULL, '', '', '[]', '', '', '0', '', '2020-11-19 14:53:19', 0, NULL, NULL, 0, '2020-11-19 14:53:26', 57, 0);
  135. INSERT INTO `cms_content` VALUES (1329316887084998658, 1329316146811314177, '', 'Designer设计器', NULL, '', '', '[]', '', '', '0', '', '2020-11-19 14:53:28', 0, NULL, NULL, 0, '2020-11-19 14:53:38', 57, 0);
  136. INSERT INTO `cms_content` VALUES (1329316951228489729, 1329316146811314177, '<p>Store应用市场</p>', 'Store应用市场', NULL, '', '', '[]', '', '', '0', '', '2020-11-19 14:53:39', 0, NULL, '2020-11-20 23:04:33', 57, '2020-11-19 14:53:53', 57, 0);
  137. INSERT INTO `cms_content` VALUES (1329374638616158210, 1329258628990967809, '', '1', NULL, '', '', '[]', '', '', '0', '', '2020-11-19 18:43:01', 0, 2, NULL, 0, '2020-11-19 18:43:07', 57, 0);
  138. INSERT INTO `cms_content` VALUES (1329374684459900929, 1329258628990967809, '', '2', NULL, '', '', '[]', '', '', '0', '', '2020-11-19 18:43:10', 0, NULL, NULL, 0, '2020-11-19 18:43:18', 57, 0);
  139. INSERT INTO `cms_content` VALUES (1329374724146405378, 1329258744783118337, '', '3', NULL, '', '', '[]', '', '', '0', '', '2020-11-19 18:43:23', 0, NULL, NULL, 0, '2020-11-19 18:43:27', 57, 0);
  140. INSERT INTO `cms_content` VALUES (1329374855797219329, 1329259260493766658, '<p><span style=\"color: rgb(96, 98, 102); font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; text-align: right; background-color: rgb(255, 255, 255);\">关键字</span><span style=\"color: rgb(96, 98, 102); font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; text-align: right; background-color: rgb(255, 255, 255);\">关键字</span><span style=\"color: rgb(96, 98, 102); font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; text-align: right; background-color: rgb(255, 255, 255);\">关键字</span><span style=\"background-color: rgb(255, 255, 255); color: rgb(96, 98, 102); font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; text-align: right;\">关键字</span></p>', '公司介绍', NULL, '关键字', '', '[]', '', '', '0', '', '2020-11-19 18:43:44', 0, NULL, '2020-11-19 19:01:03', 57, '2020-11-19 18:43:59', 57, 0);
  141. INSERT INTO `cms_content` VALUES (1329374891826290690, 1329257594591715329, '', '联系我们', NULL, '', '', '[]', '', '', '0', '', '2020-11-19 18:44:00', 0, NULL, NULL, 0, '2020-11-19 18:44:07', 57, 0);
  142. INSERT INTO `cms_content` VALUES (1329375005479346177, 1329357285870346241, '', '1', NULL, '', '', '[{\"url\":\"blob:http://192.168.0.7:5108/919ebda5-111d-4a87-81bf-78dd5f6fda9d\",\"name\":\"1476442997.jpg\",\"path\":\"/upload/1/cms/content/1605782672773.jpg\",\"uid\":1605782672436,\"status\":\"success\"}]', '', '', '0', '', '2020-11-19 18:44:22', 0, NULL, NULL, 0, '2020-11-19 18:44:35', 57, 0);
  143. INSERT INTO `cms_content` VALUES (1329375064132493314, 1329357285870346241, '', '2', NULL, '', '', '[{\"url\":\"/upload/1/cms/content/1605782687216.jpg\",\"name\":\"488679304.jpg\",\"path\":\"/upload/1/cms/content/1605782687216.jpg\",\"uid\":1605782686920,\"status\":\"success\"}]', '', '', '0', '', '2020-11-19 18:44:37', 0, NULL, '2020-11-22 19:33:37', 57, '2020-11-19 18:44:49', 57, 0);
  144. COMMIT;
  145. -- ----------------------------
  146. -- Table structure for cms_history_log
  147. -- ----------------------------
  148. DROP TABLE IF EXISTS `cms_history_log`;
  149. CREATE TABLE `cms_history_log` (
  150. `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  151. `content_id` bigint(20) unsigned NOT NULL COMMENT '文章编号',
  152. `people_id` int(20) DEFAULT NULL COMMENT '用户id',
  153. `hl_ip` varchar(255) DEFAULT NULL COMMENT '浏览ip',
  154. `hl_is_mobile` varchar(255) DEFAULT NULL COMMENT '是否为移动端',
  155. `update_date` datetime DEFAULT NULL COMMENT '修改时间',
  156. `update_by` int(11) DEFAULT NULL COMMENT '修改人',
  157. `create_date` datetime DEFAULT NULL COMMENT '创建时间',
  158. `create_by` int(11) DEFAULT NULL COMMENT '创建人',
  159. `del` int(1) DEFAULT '0' COMMENT '删除标记',
  160. PRIMARY KEY (`id`) USING BTREE
  161. ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='文章浏览记录';
  162. -- ----------------------------
  163. -- Records of cms_history_log
  164. -- ----------------------------
  165. BEGIN;
  166. INSERT INTO `cms_history_log` VALUES (1, 1324670399994753026, NULL, '192.168.0.4', '0', NULL, NULL, '2020-11-18 10:58:02', NULL, 0);
  167. INSERT INTO `cms_history_log` VALUES (2, 1329374638616158210, NULL, '127.0.0.1', '0', NULL, NULL, '2020-11-20 22:55:26', NULL, 0);
  168. INSERT INTO `cms_history_log` VALUES (3, 1329374638616158210, NULL, '192.168.0.4', '0', NULL, NULL, '2020-11-21 13:23:18', NULL, 0);
  169. COMMIT;
  170. -- ----------------------------
  171. -- Table structure for log
  172. -- ----------------------------
  173. DROP TABLE IF EXISTS `log`;
  174. CREATE TABLE `log` (
  175. `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  176. `log_error_msg` varchar(4000) DEFAULT NULL COMMENT '错误消息',
  177. `log_result` varchar(4000) DEFAULT NULL COMMENT '返回参数',
  178. `log_param` varchar(4000) DEFAULT NULL COMMENT '请求参数',
  179. `log_location` varchar(255) DEFAULT NULL COMMENT '所在地区',
  180. `log_user` varchar(255) DEFAULT NULL COMMENT '操作人员',
  181. `log_user_type` varchar(255) DEFAULT NULL COMMENT '用户类型',
  182. `log_business_type` varchar(255) DEFAULT NULL COMMENT '业务类型',
  183. `log_status` varchar(255) DEFAULT NULL COMMENT '请求状态',
  184. `log_url` varchar(255) DEFAULT NULL COMMENT '请求地址',
  185. `log_request_method` varchar(255) DEFAULT NULL COMMENT '请求方式',
  186. `log_method` varchar(255) DEFAULT NULL COMMENT '请求方法',
  187. `log_ip` varchar(255) DEFAULT NULL COMMENT 'IP',
  188. `log_title` varchar(255) DEFAULT NULL COMMENT '标题',
  189. `del` int(1) DEFAULT '0' COMMENT '删除标记',
  190. `update_date` datetime DEFAULT NULL COMMENT '修改时间',
  191. `update_by` int(11) DEFAULT NULL COMMENT '修改人',
  192. `create_date` datetime DEFAULT NULL COMMENT '创建时间',
  193. `create_by` int(11) DEFAULT NULL COMMENT '创建人',
  194. PRIMARY KEY (`id`) USING BTREE
  195. ) ENGINE=InnoDB AUTO_INCREMENT=120 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='系统日志';
  196. -- ----------------------------
  197. -- Records of log
  198. -- ----------------------------
  199. BEGIN;
  200. INSERT INTO `log` VALUES (1, 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', '生成主页', 0, NULL, NULL, '2020-11-20 22:55:00', NULL);
  201. INSERT INTO `log` VALUES (2, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"dateTime\":[\"2019-10-22\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/generateArticle.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateArticle()', '127.0.0.1', '生成文章', 0, NULL, NULL, '2020-11-20 22:55:02', NULL);
  202. INSERT INTO `log` VALUES (3, 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', '生成栏目', 0, NULL, NULL, '2020-11-20 22:55:03', NULL);
  203. INSERT INTO `log` VALUES (4, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":\"685\"\n}', '{\n \"createBy\":[\"0\"],\n \"createDate\":[\"\"],\n \"del\":[\"0\"],\n \"id\":[\"685\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"0\"],\n \"updateDate\":[\"\"],\n \"order\":[\"\"],\n \"modelTitle\":[\"系统日志\"],\n \"modelId\":[\"84\"],\n \"modelUrl\":[\"basic/log/index.do\"],\n \"modelCode\":[\"65123656532\"],\n \"isChild\":[\"\"],\n \"modelIcon\":[\"\"],\n \"managerId\":[\"0\"],\n \"modelSort\":[\"0\"],\n \"modelIsMenu\":[\"1\"],\n \"chick\":[\"0\"],\n \"childNum\":[\"0\"],\n \"depth\":[\"1\"],\n \"modelParentIds\":[\"84\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/model/update.do', 'POST', 'net.mingsoft.basic.action.ModelAction.update()', '127.0.0.1', '更新模块表信息模块表', 0, NULL, NULL, '2020-11-20 22:57:38', NULL);
  204. INSERT INTO `log` VALUES (5, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":\"686\"\n}', '{\n \"createBy\":[\"0\"],\n \"createDate\":[\"\"],\n \"del\":[\"0\"],\n \"id\":[\"686\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"0\"],\n \"updateDate\":[\"\"],\n \"order\":[\"\"],\n \"modelTitle\":[\"查看\"],\n \"modelId\":[\"685\"],\n \"modelUrl\":[\"basic:log:view\"],\n \"modelCode\":[\"351463145634\"],\n \"isChild\":[\"\"],\n \"modelIcon\":[\"\"],\n \"managerId\":[\"0\"],\n \"modelSort\":[\"0\"],\n \"modelIsMenu\":[\"0\"],\n \"chick\":[\"0\"],\n \"childNum\":[\"0\"],\n \"depth\":[\"2\"],\n \"modelParentIds\":[\"84,685\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/model/update.do', 'POST', 'net.mingsoft.basic.action.ModelAction.update()', '127.0.0.1', '更新模块表信息模块表', 0, NULL, NULL, '2020-11-20 22:57:54', NULL);
  205. INSERT INTO `log` VALUES (6, 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', '生成主页', 0, NULL, NULL, '2020-11-20 22:58:21', NULL);
  206. INSERT INTO `log` VALUES (7, '\r\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'\' at line 10\r\n### The error may exist in net/mingsoft/cms/dao/IContentDao.xml\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: select ct.id article_id,c.* FROM cms_content ct LEFT JOIN cms_category c ON ct.category_id = c.id where ct.del=0 and (ct.category_id=? or ct.category_id in (select id FROM cms_category where find_in_set(\'1329256979346038786\',CATEGORY_PARENT_ID))\r\n### Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'\' at line 10\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near \'\' at line 10', 'null', '{}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate/0/genernateColumn.do', 'GET', 'net.mingsoft.cms.action.GeneraterAction.genernateColumn()', '127.0.0.1', '生成栏目', 0, NULL, NULL, '2020-11-20 22:58:23', NULL);
  207. INSERT INTO `log` VALUES (8, 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', '生成主页', 0, NULL, NULL, '2020-11-20 22:59:39', NULL);
  208. INSERT INTO `log` VALUES (9, 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', '生成栏目', 0, NULL, NULL, '2020-11-20 22:59:42', NULL);
  209. INSERT INTO `log` VALUES (10, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"dateTime\":[\"2019-10-22\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/generateArticle.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateArticle()', '127.0.0.1', '生成文章', 0, NULL, NULL, '2020-11-20 22:59:45', NULL);
  210. INSERT INTO `log` VALUES (11, 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', '生成栏目', 0, NULL, NULL, '2020-11-20 23:02:55', NULL);
  211. INSERT INTO `log` VALUES (12, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"dateTime\":[\"2020-11-21\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/generateArticle.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateArticle()', '127.0.0.1', '生成文章', 0, NULL, NULL, '2020-11-20 23:03:01', NULL);
  212. INSERT INTO `log` VALUES (13, 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', '生成主页', 0, NULL, NULL, '2020-11-20 23:03:03', NULL);
  213. INSERT INTO `log` VALUES (14, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"cityName\":\"\",\n \"countyName\":\"\",\n \"createBy\":0,\n \"del\":0,\n \"id\":\"1\",\n \"intId\":1,\n \"integerId\":1,\n \"newUser\":true,\n \"peopleAutoLogin\":0,\n \"peopleId\":1,\n \"peopleMail\":\"11111111111@qq.com\",\n \"peopleMailCheck\":1,\n \"peopleName\":\"zs\",\n \"peoplePhone\":\"11111111111\",\n \"peoplePhoneCheck\":1,\n \"peopleState\":1,\n \"provinceName\":\"\",\n \"puAddress\":\"1\",\n \"puBirthday\":\"2020-11-09\",\n \"puCard\":\"1\",\n \"puIcon\":\"/upload/1/people/user/1605935035645.jpg\",\n \"puLevel\":\"\",\n \"puLevelName\":\"\",\n \"puNickname\":\"张三\",\n \"puRealName\":\"1\",\n \"puSex\":1,\n \"sqlWhereList\":[],\n \"updateBy\":57,\n \"updateDate\":\"2020-11-21 13:03:57\"\n }\n}', '{\n \"peopleName\":[\"zs\"],\n \"peoplePassword\":[\"\"],\n \"puNickname\":[\"张三\"],\n \"puSex\":[\"1\"],\n \"puBirthday\":[\"2020-11-09\"],\n \"puRealName\":[\"1\"],\n \"puCard\":[\"1\"],\n \"peoplePhone\":[\"11111111111\"],\n \"peopleMail\":[\"11111111111@qq.com\"],\n \"peoplePhoneCheck\":[\"1\"],\n \"peopleMailCheck\":[\"1\"],\n \"peopleState\":[\"1\"],\n \"puIcon\":[\"/upload/1/people/user/1605935035645.jpg\"],\n \"provinceId\":[\"\"],\n \"provinceName\":[\"\"],\n \"cityName\":[\"\"],\n \"countyName\":[\"\"],\n \"cityId\":[\"\"],\n \"countyId\":[\"\"],\n \"puAddress\":[\"1\"],\n \"puLevel\":[\"\"],\n \"puLevelName\":[\"\"],\n \"peopleId\":[\"1\"],\n \"peopleDateTime\":[\"\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/people/peopleUser/update.do', 'POST', 'net.mingsoft.people.action.PeopleUserAction.update()', '127.0.0.1', '修改用户基础信息接口', 0, NULL, NULL, '2020-11-20 23:03:57', NULL);
  214. INSERT INTO `log` VALUES (15, 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', '生成主页', 0, NULL, NULL, '2020-11-20 23:08:54', NULL);
  215. INSERT INTO `log` VALUES (16, 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.4', '生成栏目', 0, NULL, NULL, '2020-11-21 13:23:06', NULL);
  216. INSERT INTO `log` VALUES (17, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"dateTime\":[\"2020-11-21\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/generateArticle.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateArticle()', '192.168.0.4', '生成文章', 0, NULL, NULL, '2020-11-21 13:23:07', NULL);
  217. INSERT INTO `log` VALUES (18, 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.4', '生成主页', 0, NULL, NULL, '2020-11-21 13:23:08', NULL);
  218. INSERT INTO `log` VALUES (19, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"dateTime\":[\"2019-10-15\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/generateArticle.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateArticle()', '192.168.0.4', '生成文章', 0, NULL, NULL, '2020-11-21 13:23:14', NULL);
  219. INSERT INTO `log` VALUES (20, 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.4', '生成主页', 0, NULL, NULL, '2020-11-21 13:23:15', NULL);
  220. INSERT INTO `log` VALUES (21, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"cityName\":\"\",\n \"countyName\":\"\",\n \"createBy\":0,\n \"del\":0,\n \"id\":\"1\",\n \"intId\":1,\n \"integerId\":1,\n \"newUser\":true,\n \"peopleAutoLogin\":0,\n \"peopleId\":1,\n \"peopleMail\":\"11111111111@qq.com\",\n \"peopleMailCheck\":1,\n \"peopleName\":\"zs\",\n \"peoplePhone\":\"11111111111\",\n \"peoplePhoneCheck\":1,\n \"peopleState\":1,\n \"provinceName\":\"\",\n \"puAddress\":\"1\",\n \"puBirthday\":\"2020-11-08\",\n \"puCard\":\"1\",\n \"puIcon\":\"/upload/1/people/user/1605936220556.jpg\",\n \"puLevel\":\"\",\n \"puLevelName\":\"\",\n \"puNickname\":\"张三\",\n \"puRealName\":\"1\",\n \"puSex\":1,\n \"sqlWhereList\":[],\n \"updateBy\":57,\n \"updateDate\":\"2020-11-21 13:23:42\"\n }\n}', '{\n \"peopleName\":[\"zs\"],\n \"peoplePassword\":[\"\"],\n \"puNickname\":[\"张三\"],\n \"puSex\":[\"1\"],\n \"puBirthday\":[\"2020-11-08\"],\n \"puRealName\":[\"1\"],\n \"puCard\":[\"1\"],\n \"peoplePhone\":[\"11111111111\"],\n \"peopleMail\":[\"11111111111@qq.com\"],\n \"peoplePhoneCheck\":[\"1\"],\n \"peopleMailCheck\":[\"1\"],\n \"peopleState\":[\"1\"],\n \"puIcon\":[\"/upload/1/people/user/1605936220556.jpg\"],\n \"provinceId\":[\"\"],\n \"provinceName\":[\"\"],\n \"cityName\":[\"\"],\n \"countyName\":[\"\"],\n \"cityId\":[\"\"],\n \"countyId\":[\"\"],\n \"puAddress\":[\"1\"],\n \"puLevel\":[\"\"],\n \"puLevelName\":[\"\"],\n \"peopleId\":[\"1\"],\n \"peopleDateTime\":[\"\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/people/peopleUser/update.do', 'POST', 'net.mingsoft.people.action.PeopleUserAction.update()', '192.168.0.4', '������������������������������', 0, NULL, NULL, '2020-11-21 13:23:43', NULL);
  221. INSERT INTO `log` VALUES (22, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"cityName\":\"\",\n \"countyName\":\"\",\n \"createBy\":57,\n \"createDate\":\"2020-11-21 13:24:00\",\n \"del\":0,\n \"id\":\"2\",\n \"intId\":2,\n \"integerId\":2,\n \"newUser\":true,\n \"peopleAutoLogin\":0,\n \"peopleDateTime\":\"2020-11-21 13:24:00\",\n \"peopleMail\":\"\",\n \"peopleMailCheck\":0,\n \"peopleName\":\"lisi\",\n \"peoplePhone\":\"\",\n \"peoplePhoneCheck\":0,\n \"peopleState\":0,\n \"provinceName\":\"\",\n \"puAddress\":\"\",\n \"puCard\":\"\",\n \"puIcon\":\"/upload/1/people/user/1605936239726.jpg\",\n \"puLevel\":\"\",\n \"puLevelName\":\"\",\n \"puNickname\":\"李四\",\n \"puRealName\":\"\",\n \"sqlWhereList\":[],\n \"updateBy\":0\n }\n}', '{\n \"peopleName\":[\"lisi\"],\n \"peoplePassword\":[\"lisi\"],\n \"puNickname\":[\"李四\"],\n \"puSex\":[\"\"],\n \"puBirthday\":[\"\"],\n \"puRealName\":[\"\"],\n \"puCard\":[\"\"],\n \"peoplePhone\":[\"\"],\n \"peopleMail\":[\"\"],\n \"peoplePhoneCheck\":[\"0\"],\n \"peopleMailCheck\":[\"0\"],\n \"peopleState\":[\"0\"],\n \"puIcon\":[\"/upload/1/people/user/1605936239726.jpg\"],\n \"provinceId\":[\"\"],\n \"provinceName\":[\"\"],\n \"cityName\":[\"\"],\n \"countyName\":[\"\"],\n \"cityId\":[\"\"],\n \"countyId\":[\"\"],\n \"puAddress\":[\"\"],\n \"puLevel\":[\"\"],\n \"puLevelName\":[\"\"],\n \"peopleId\":[\"\"]\n}', '内网IP', 'msopen', 'manage', 'insert', 'success', '/ms/people/peopleUser/save.do', 'POST', 'net.mingsoft.people.action.PeopleUserAction.save()', '192.168.0.4', '������������������������������', 0, NULL, NULL, '2020-11-21 13:24:02', NULL);
  222. INSERT INTO `log` VALUES (23, 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.4', '生成栏目', 0, NULL, NULL, '2020-11-21 13:39:39', NULL);
  223. INSERT INTO `log` VALUES (24, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"dateTime\":[\"2020-11-21\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/generateArticle.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateArticle()', '192.168.0.4', '生成文章', 0, NULL, NULL, '2020-11-21 13:39:40', NULL);
  224. INSERT INTO `log` VALUES (25, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"dateTime\":[\"2019-11-13\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/generateArticle.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateArticle()', '192.168.0.4', '生成文章', 0, NULL, NULL, '2020-11-21 13:39:46', NULL);
  225. INSERT INTO `log` VALUES (26, 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.4', '生成主页', 0, NULL, NULL, '2020-11-21 13:39:48', NULL);
  226. INSERT INTO `log` VALUES (27, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"fileName\":[\"template\\\\1/\\\\default\\\\detail.htm\"],\n \"name\":[\"detail.htm\"],\n \"fileNamePrefix\":[\"template\\\\1/\\\\default\\\\\"],\n \"fileContent\":[\"\\n\\n <!--网络请求框架-->\\n\\n\\n<html>\\n<head>\\n <meta charset=\\\"utf-8\\\" />\\n <title>{ms:global.name/}</title>\\n <meta http-equiv=\\\"content-type\\\" content=\\\"text/html\\\" />\\n <META HTTP-EQUIV=\\\"Pragma\\\" CONTENT=\\\"no-cache\\\" />\\n <meta name=\\\"viewport\\\" content=\\\"initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no,width=device-width\\\"/>\\n <meta name=\\\"format-detection\\\" content=\\\"telephone=no\\\"/>\\n <meta name=\\\"app-mobile-web-app-capable\\\" content=\\\"yes\\\"/>\\n <meta name=\\\"app-mobile-web-app-status-bar-style\\\" content=\\\"black-translucent\\\"/>\\n <meta name=\\\"keywords\\\" content=\\\"{ms:global.keyword/}\\\" />\\n <meta name=\\\"description\\\" content=\\\"{ms:global.descrip/}\\\" />\\n <script type=\\\"text/javascript\\\" src=\\\"{ms:global.host/}/static/plugins/vue/2.6.9/vue.min.js\\\"></script>\\n <link rel=\\\"stylesheet\\\" href=\\\"{ms:global.host/}/static/plugins/minireset/0.0.2/minireset.min.css\\\" />\\n <link rel=\\\"stylesheet\\\" href=\\\"https://cdn.mingsoft.net/iconfont/iconfont.css\\\" />\\n <link rel=\\\"stylesheet\\\" href=\\\"{ms:global.host/}/static/plugins/animate/4.1.0/animate.min.css\\\">\\n <script src=\\\"{ms:global.host/}/static/plugins/element-ui/2.12.0/index.js\\\"></script>\\n <link rel=\\\"stylesheet\\\" href=\\\"{ms:global.host/}/static/plugins/element-ui/2.12.0/index.css\\\" />\\n\\n <link rel=\\\"stylesheet\\\" href=\\\"{ms:global.host/}/{ms:global.style/}/css/app.css\\\" />\\n\\n <!--网络请求框架-->\\n <script src=\\\"{ms:global.host/}/static/plugins/axios/0.18.0/axios.min.js\\\"></script>\\n <script src=\\\"{ms:global.host/}/static/plugins/qs/6.6.0/qs.min.js\\\"></script>\\n <script src=\\\"{ms:global.host/}/static/plugins/ms/1.0.0/ms.js\\\"></script>\\n <script src=\\\"{ms:global.host/}/static/plugins/ms/1.0.0/ms.http.js\\\"></script>\\n <script src=\\\"{ms:global.host/}/static/plugins/ms/1.0.0/ms.util.js\\\"></script>\\n <script>\\n ms.base = \\\"\\\";\\n </script>\\n <style>\\n [v-cloak]{\\n display: none;\\n }\\n </style>\\n</head>\\n<body>\\n <div id=\\\"app\\\" v-cloak>\\n\\n <#include \\\"header.htm\\\"/>\\n\\n\\n<div class=\\\"content\\\">\\n<div class=\\\"ms-channel-path\\\">\\n<span class=\\\"ms-channel-path-label\\\">\\n当前位置:\\n</span>\\n<a href=\\\"/\\\" class=\\\"ms-channel-path-index\\\">\\n首页\\n</a>\\n{ms:channel type=\\\"path\\\"}\\n<i class=\\\"iconfont icon-youjiantou\\\"></i>\\n<a href=\\\"{ms:global.url/}${field.typelink}\\\" class=\\\"ms-channel-path-link\\\">\\n${field.typetitle}\\n</a>\\n{/ms:channel}\\n</div>\\n<div class=\\\"detail\\\">\\n<div class=\\\"top\\\">\\n<span class=\\\"title\\\" >\\n${field.title}\\n</span>\\n<div class=\\\"date\\\">\\n<span >\\n发布时间:\\n</span>\\n<span >\\n${field.date?string(\\\"yyyy-MM-dd\\\")}\\n</span>\\n<div style=\\\"flex-wrap:nowrap;flex-direction:row;display:flex;width:20px;box-sizing:border-box;margin-top:0px;height:100%;\\\">\\n</div>\\n<span >\\n浏览次数:\\n</span>\\n<span >\\n${field.hit}\\n</span>\\n</div> </div>\\n<div class=\\\"body\\\">\\n<span class=\\\"body-text\\\" >\\n${field.content}\\n</span>\\n</div> </div>\\n<div class=\\\"ms-next-pre\\\">\\n<div class=\\\"pre\\\">\\n<span >\\n上一篇:\\n</span>\\n<a href=\\\"${global.url}${pre.link}\\\"\\n>\\n${pre.title}\\n</a>\\n</div>\\n<div class=\\\"next\\\">\\n<span >\\n下一篇:\\n</span>\\n<a href=\\\"${global.url}${next.link}\\\"\\n>\\n${next.title}\\n</a>\\n</div> </div> </div>\\n <#include \\\"footer.htm\\\"/>\\n </div>\\n</body>\\n</html>\\n\\n<script>\\nvar app = new Vue({\\n el: \'#app\',\\n watch:{\\n },\\n data: {\\n },\\n methods: {\\n switchShow:function(arr){\\n var that = this\\n arr.forEach(function(x){\\n let e = that.$el.querySelector(\\\"#key_\\\"+x)\\n if(e){\\n e.style.display=e.style.display==\'none\'?\'flex\':\'none\'\\n }\\n })\\n },\\n },\\n created(){\\n }\\n})\\n</script>\\n\\n<style>\\n body {\\n background-color:#f5f5f5;\\n box-sizing:border-box;\\n font-family:-appl', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/template/writeFileContent.do', 'POST', 'net.mingsoft.basic.action.TemplateAction.writeFileContent()', '127.0.0.1', '写入模版文件内容', 0, NULL, NULL, '2020-11-22 18:36:55', NULL);
  227. INSERT INTO `log` VALUES (28, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"fileName\":[\"template\\\\1/\\\\default\\\\detail.htm\"],\n \"name\":[\"detail.htm\"],\n \"fileNamePrefix\":[\"template\\\\1/\\\\default\\\\\"],\n \"fileContent\":[\"\\n\\n\\n<html>\\n<head>\\n <meta charset=\\\"utf-8\\\" />\\n <title>{ms:global.name/}</title>\\n <meta http-equiv=\\\"content-type\\\" content=\\\"text/html\\\" />\\n <META HTTP-EQUIV=\\\"Pragma\\\" CONTENT=\\\"no-cache\\\" />\\n <meta name=\\\"viewport\\\" content=\\\"initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no,width=device-width\\\"/>\\n <meta name=\\\"format-detection\\\" content=\\\"telephone=no\\\"/>\\n <meta name=\\\"app-mobile-web-app-capable\\\" content=\\\"yes\\\"/>\\n <meta name=\\\"app-mobile-web-app-status-bar-style\\\" content=\\\"black-translucent\\\"/>\\n <meta name=\\\"keywords\\\" content=\\\"{ms:global.keyword/}\\\" />\\n <meta name=\\\"description\\\" content=\\\"{ms:global.descrip/}\\\" />\\n <script type=\\\"text/javascript\\\" src=\\\"{ms:global.host/}/static/plugins/vue/2.6.9/vue.min.js\\\"></script>\\n <link rel=\\\"stylesheet\\\" href=\\\"{ms:global.host/}/static/plugins/minireset/0.0.2/minireset.min.css\\\" />\\n <link rel=\\\"stylesheet\\\" href=\\\"https://cdn.mingsoft.net/iconfont/iconfont.css\\\" />\\n <link rel=\\\"stylesheet\\\" href=\\\"{ms:global.host/}/static/plugins/animate/4.1.0/animate.min.css\\\">\\n <script src=\\\"{ms:global.host/}/static/plugins/element-ui/2.12.0/index.js\\\"></script>\\n <link rel=\\\"stylesheet\\\" href=\\\"{ms:global.host/}/static/plugins/element-ui/2.12.0/index.css\\\" />\\n\\n <link rel=\\\"stylesheet\\\" href=\\\"{ms:global.host/}/{ms:global.style/}/css/app.css\\\" />\\n\\n <!--网络请求框架-->\\n <script src=\\\"{ms:global.host/}/static/plugins/axios/0.18.0/axios.min.js\\\"></script>\\n <script src=\\\"{ms:global.host/}/static/plugins/qs/6.6.0/qs.min.js\\\"></script>\\n <script src=\\\"{ms:global.host/}/static/plugins/ms/1.0.0/ms.js\\\"></script>\\n <script src=\\\"{ms:global.host/}/static/plugins/ms/1.0.0/ms.http.js\\\"></script>\\n <script src=\\\"{ms:global.host/}/static/plugins/ms/1.0.0/ms.util.js\\\"></script>\\n <script>\\n ms.base = \\\"\\\";\\n </script>\\n <style>\\n [v-cloak]{\\n display: none;\\n }\\n </style>\\n</head>\\n<body>\\n <div id=\\\"app\\\" v-cloak>\\n\\n <#include \\\"header.htm\\\"/>\\n\\n\\n<div class=\\\"content\\\">\\n<div class=\\\"ms-channel-path\\\">\\n<span class=\\\"ms-channel-path-label\\\">\\n当前位置:\\n</span>\\n<a href=\\\"/\\\" class=\\\"ms-channel-path-index\\\">\\n首页\\n</a>\\n{ms:channel type=\\\"path\\\"}\\n<i class=\\\"iconfont icon-youjiantou\\\"></i>\\n<a href=\\\"{ms:global.url/}${field.typelink}\\\" class=\\\"ms-channel-path-link\\\">\\n${field.typetitle}\\n</a>\\n{/ms:channel}\\n</div>\\n<div class=\\\"detail\\\">\\n<div class=\\\"top\\\">\\n<span class=\\\"title\\\" >\\n${field.title}\\n</span>\\n<div class=\\\"date\\\">\\n<span >\\n发布时间:\\n</span>\\n<span >\\n${field.date?string(\\\"yyyy-MM-dd\\\")}\\n</span>\\n<div style=\\\"flex-wrap:nowrap;flex-direction:row;display:flex;width:20px;box-sizing:border-box;margin-top:0px;height:100%;\\\">\\n</div>\\n<span >\\n浏览次数:\\n</span>\\n<span >\\n${field.hit}\\n</span>\\n</div> </div>\\n<div class=\\\"body\\\">\\n<span class=\\\"body-text\\\" >\\n${field.content}\\n</span>\\n</div> </div>\\n<div class=\\\"ms-next-pre\\\">\\n<div class=\\\"pre\\\">\\n<span >\\n上一篇:\\n</span>\\n<a href=\\\"${global.url}${pre.link}\\\"\\n>\\n${pre.title}\\n</a>\\n</div>\\n<div class=\\\"next\\\">\\n<span >\\n下一篇:\\n</span>\\n<a href=\\\"${global.url}${next.link}\\\"\\n>\\n${next.title}\\n</a>\\n</div> </div> </div>\\n <#include \\\"footer.htm\\\"/>\\n </div>\\n</body>\\n</html>\\n\\n<script>\\nvar app = new Vue({\\n el: \'#app\',\\n watch:{\\n },\\n data: {\\n },\\n methods: {\\n switchShow:function(arr){\\n var that = this\\n arr.forEach(function(x){\\n let e = that.$el.querySelector(\\\"#key_\\\"+x)\\n if(e){\\n e.style.display=e.style.display==\'none\'?\'flex\':\'none\'\\n }\\n })\\n },\\n },\\n created(){\\n }\\n})\\n</script>\\n\\n<style>\\n body {\\n background-color:#f5f5f5;\\n box-sizing:border-box;\\n font-family:-apple-system, BlinkMacSys', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/template/writeFileContent.do', 'POST', 'net.mingsoft.basic.action.TemplateAction.writeFileContent()', '127.0.0.1', '写入模版文件内容', 0, NULL, NULL, '2020-11-22 18:37:14', NULL);
  228. INSERT INTO `log` VALUES (29, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-03 21:26:40', NULL);
  229. INSERT INTO `log` VALUES (30, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-03 21:30:24', NULL);
  230. INSERT INTO `log` VALUES (31, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-03 21:31:10', NULL);
  231. INSERT INTO `log` VALUES (32, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-03 21:31:18', NULL);
  232. INSERT INTO `log` VALUES (33, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-03 21:32:01', NULL);
  233. INSERT INTO `log` VALUES (34, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-03 21:32:04', NULL);
  234. INSERT INTO `log` VALUES (35, 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', '生成主页', 0, NULL, NULL, '2020-12-03 21:32:38', NULL);
  235. INSERT INTO `log` VALUES (36, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-03 21:32:57', NULL);
  236. INSERT INTO `log` VALUES (37, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"dateTime\":[\"2020-12-04\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/generateArticle.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateArticle()', '127.0.0.1', '生成文章', 0, NULL, NULL, '2020-12-03 21:33:06', NULL);
  237. INSERT INTO `log` VALUES (38, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-03 21:33:10', NULL);
  238. INSERT INTO `log` VALUES (39, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-03 21:33:37', NULL);
  239. INSERT INTO `log` VALUES (40, 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', '生成主页', 0, NULL, NULL, '2020-12-03 21:33:43', NULL);
  240. INSERT INTO `log` VALUES (41, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-03 21:34:00', NULL);
  241. INSERT INTO `log` VALUES (42, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-03 21:34:13', NULL);
  242. INSERT INTO `log` VALUES (43, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-03 21:34:17', NULL);
  243. INSERT INTO `log` VALUES (44, 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', '生成主页', 0, NULL, NULL, '2020-12-03 21:36:53', NULL);
  244. INSERT INTO `log` VALUES (45, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-03 21:37:10', NULL);
  245. INSERT INTO `log` VALUES (46, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-03 21:42:36', NULL);
  246. INSERT INTO `log` VALUES (47, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-03 21:43:32', NULL);
  247. INSERT INTO `log` VALUES (48, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-03 21:45:14', NULL);
  248. INSERT INTO `log` VALUES (49, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-03 21:45:14', NULL);
  249. INSERT INTO `log` VALUES (50, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-03 21:48:36', NULL);
  250. INSERT INTO `log` VALUES (51, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-03 21:48:48', NULL);
  251. INSERT INTO `log` VALUES (52, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-03 21:49:05', NULL);
  252. INSERT INTO `log` VALUES (53, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-03 21:49:13', NULL);
  253. INSERT INTO `log` VALUES (54, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-03 21:49:43', NULL);
  254. INSERT INTO `log` VALUES (55, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-03 21:49:44', NULL);
  255. INSERT INTO `log` VALUES (56, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-03 22:05:42', NULL);
  256. INSERT INTO `log` VALUES (57, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-03 22:05:48', NULL);
  257. INSERT INTO `log` VALUES (58, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-03 22:06:34', NULL);
  258. INSERT INTO `log` VALUES (59, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-04 00:54:40', NULL);
  259. INSERT INTO `log` VALUES (60, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-04 00:56:54', NULL);
  260. INSERT INTO `log` VALUES (61, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-04 01:00:37', NULL);
  261. INSERT INTO `log` VALUES (62, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-04 01:00:51', NULL);
  262. INSERT INTO `log` VALUES (63, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-04 01:00:51', NULL);
  263. INSERT INTO `log` VALUES (64, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-04 01:02:42', NULL);
  264. INSERT INTO `log` VALUES (65, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-04 01:03:24', NULL);
  265. INSERT INTO `log` VALUES (66, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-04 01:03:54', NULL);
  266. INSERT INTO `log` VALUES (67, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-04 01:06:15', NULL);
  267. INSERT INTO `log` VALUES (68, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-04 01:07:24', NULL);
  268. INSERT INTO `log` VALUES (69, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-04 01:07:25', NULL);
  269. INSERT INTO `log` VALUES (70, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-04 01:07:28', NULL);
  270. INSERT INTO `log` VALUES (71, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-04 01:08:11', NULL);
  271. INSERT INTO `log` VALUES (72, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-04 01:08:12', NULL);
  272. INSERT INTO `log` VALUES (73, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-04 01:13:36', NULL);
  273. INSERT INTO `log` VALUES (74, 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', '生成主页', 0, NULL, NULL, '2020-12-04 01:16:25', NULL);
  274. INSERT INTO `log` VALUES (75, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-04 19:22:59', NULL);
  275. INSERT INTO `log` VALUES (76, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-04 19:23:50', NULL);
  276. INSERT INTO `log` VALUES (77, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-04 19:24:27', NULL);
  277. INSERT INTO `log` VALUES (78, 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', '生成主页', 0, NULL, NULL, '2020-12-04 19:25:22', NULL);
  278. INSERT INTO `log` VALUES (79, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-04 19:25:49', NULL);
  279. INSERT INTO `log` VALUES (80, 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', '生成主页', 0, NULL, NULL, '2020-12-04 19:26:14', NULL);
  280. INSERT INTO `log` VALUES (81, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-04 19:26:35', NULL);
  281. INSERT INTO `log` VALUES (82, 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', '生成主页', 0, NULL, NULL, '2020-12-04 19:26:44', NULL);
  282. INSERT INTO `log` VALUES (83, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-04 19:26:53', NULL);
  283. INSERT INTO `log` VALUES (84, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-04 19:27:32', NULL);
  284. INSERT INTO `log` VALUES (85, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-04 19:27:44', NULL);
  285. INSERT INTO `log` VALUES (86, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-04 19:27:53', NULL);
  286. INSERT INTO `log` VALUES (87, 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', '生成主页', 0, NULL, NULL, '2020-12-04 19:28:01', NULL);
  287. INSERT INTO `log` VALUES (88, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-04 19:28:07', NULL);
  288. INSERT INTO `log` VALUES (89, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-04 19:28:39', NULL);
  289. INSERT INTO `log` VALUES (90, 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', '生成主页', 0, NULL, NULL, '2020-12-04 19:29:03', NULL);
  290. INSERT INTO `log` VALUES (91, NULL, 'null', '{\n \"url\":[\"index.htm\"],\n \"position\":[\"index\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'error', '/ms/cms/generate//generateIndex.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateIndex()', '127.0.0.1', '生成主页', 0, NULL, NULL, '2020-12-04 19:29:35', NULL);
  291. INSERT INTO `log` VALUES (92, 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', '生成主页', 0, NULL, NULL, '2020-12-04 19:30:01', NULL);
  292. INSERT INTO `log` VALUES (93, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"1329256979346038786\"\n }\n}', '{\n \"createBy\":[\"57\"],\n \"createDate\":[\"2020-11-20 00:55:35\"],\n \"del\":[\"0\"],\n \"id\":[\"1329256979346038786\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"57\"],\n \"updateDate\":[\"2020-11-20 01:53:44\"],\n \"order\":[\"\"],\n \"categoryTitle\":[\"首页\"],\n \"categoryPinyin\":[\"shouye\"],\n \"categoryId\":[\"\"],\n \"categoryType\":[\"3\"],\n \"categorySort\":[\"0\"],\n \"categoryListUrl\":[\"\"],\n \"categoryUrl\":[\"\"],\n \"categoryKeyword\":[\"\"],\n \"categoryDescrip\":[\"\"],\n \"categoryImg\":[\"[]\"],\n \"categoryDiyUrl\":[\"\"],\n \"mdiyModelId\":[\"\"],\n \"categoryDatetime\":[\"\"],\n \"dictId\":[\"\"],\n \"categoryFlag\":[\"n\"],\n \"categoryPath\":[\"/shouye\"],\n \"categoryParentIds\":[\"\"],\n \"leaf\":[\"true\"],\n \"topId\":[\"0\"],\n \"flag\":[\"d\"],\n \"parentids\":[\"\"],\n \"typetitle\":[\"首页\"],\n \"typelink\":[\"\"],\n \"typekeyword\":[\"\"],\n \"typeurl\":[\"\"],\n \"typedescrip\":[\"\"],\n \"typeid\":[\"1329256979346038786\"],\n \"typelitpic\":[\"[]\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/category/update.do', 'POST', 'net.mingsoft.cms.action.CategoryAction.update()', '127.0.0.1', '更新分类', 0, NULL, NULL, '2020-12-04 19:36:56', NULL);
  293. INSERT INTO `log` VALUES (94, 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', '生成主页', 0, NULL, NULL, '2020-12-04 19:37:14', NULL);
  294. INSERT INTO `log` VALUES (95, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"dateTime\":[\"2020-12-05\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/generateArticle.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateArticle()', '127.0.0.1', '生成文章', 0, NULL, NULL, '2020-12-04 19:39:35', NULL);
  295. INSERT INTO `log` VALUES (96, 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', '生成栏目', 0, NULL, NULL, '2020-12-04 19:39:38', NULL);
  296. INSERT INTO `log` VALUES (97, 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', '生成主页', 0, NULL, NULL, '2020-12-04 19:40:04', NULL);
  297. INSERT INTO `log` VALUES (98, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"dateTime\":[\"2020-12-05\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/generateArticle.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateArticle()', '127.0.0.1', '生成文章', 0, NULL, NULL, '2020-12-04 19:40:06', NULL);
  298. INSERT INTO `log` VALUES (99, 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', '生成主页', 0, NULL, NULL, '2020-12-04 19:51:20', NULL);
  299. INSERT INTO `log` VALUES (100, 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', '生成主页', 0, NULL, NULL, '2020-12-04 19:56:42', NULL);
  300. INSERT INTO `log` VALUES (101, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"1329257213283344385\"\n }\n}', '{\n \"createBy\":[\"57\"],\n \"createDate\":[\"2020-11-20 00:56:31\"],\n \"del\":[\"0\"],\n \"id\":[\"1329257213283344385\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"57\"],\n \"updateDate\":[\"2020-11-20 08:29:38\"],\n \"order\":[\"\"],\n \"categoryTitle\":[\"公司产品\"],\n \"categoryPinyin\":[\"product\"],\n \"categoryId\":[\"\"],\n \"categoryType\":[\"1\"],\n \"categorySort\":[\"0\"],\n \"categoryListUrl\":[\"product.htm\"],\n \"categoryUrl\":[\"product-detail1.htm\"],\n \"categoryKeyword\":[\"\"],\n \"categoryDescrip\":[\"\"],\n \"categoryImg\":[\"[]\"],\n \"categoryDiyUrl\":[\"\"],\n \"mdiyModelId\":[\"\"],\n \"categoryDatetime\":[\"\"],\n \"dictId\":[\"\"],\n \"categoryFlag\":[\"n\"],\n \"categoryPath\":[\"/product\"],\n \"categoryParentIds\":[\"\"],\n \"leaf\":[\"false\"],\n \"topId\":[\"0\"],\n \"flag\":[\"d\"],\n \"parentids\":[\"\"],\n \"typetitle\":[\"公司产品\"],\n \"typelink\":[\"/product/index.html\"],\n \"typekeyword\":[\"\"],\n \"typeurl\":[\"\"],\n \"typedescrip\":[\"\"],\n \"typeid\":[\"1329257213283344385\"],\n \"typelitpic\":[\"[]\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/category/update.do', 'POST', 'net.mingsoft.cms.action.CategoryAction.update()', '127.0.0.1', '更新分类', 0, NULL, NULL, '2020-12-04 19:58:02', NULL);
  301. INSERT INTO `log` VALUES (102, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"1329257757913718785\"\n }\n}', '{\n \"createBy\":[\"57\"],\n \"createDate\":[\"2020-11-20 00:58:41\"],\n \"del\":[\"0\"],\n \"id\":[\"1329257757913718785\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"57\"],\n \"updateDate\":[\"2020-11-20 08:31:08\"],\n \"order\":[\"\"],\n \"categoryTitle\":[\"开源产品\"],\n \"categoryPinyin\":[\"kycp\"],\n \"categoryId\":[\"1329257213283344385\"],\n \"categoryType\":[\"1\"],\n \"categorySort\":[\"0\"],\n \"categoryListUrl\":[\"product.htm\"],\n \"categoryUrl\":[\"product-detail1.htm\"],\n \"categoryKeyword\":[\"\"],\n \"categoryDescrip\":[\"\"],\n \"categoryImg\":[\"[]\"],\n \"categoryDiyUrl\":[\"\"],\n \"mdiyModelId\":[\"\"],\n \"categoryDatetime\":[\"\"],\n \"dictId\":[\"\"],\n \"categoryFlag\":[\"n\"],\n \"categoryPath\":[\"/product/kycp\"],\n \"categoryParentIds\":[\"1329257213283344385\"],\n \"leaf\":[\"true\"],\n \"topId\":[\"1329257213283344385\"],\n \"flag\":[\"\"],\n \"parentids\":[\"1329257213283344385\"],\n \"typetitle\":[\"开源产品\"],\n \"typelink\":[\"/product/kycp/index.html\"],\n \"typekeyword\":[\"\"],\n \"typeurl\":[\"\"],\n \"typedescrip\":[\"\"],\n \"typeid\":[\"1329257757913718785\"],\n \"typelitpic\":[\"[]\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/category/update.do', 'POST', 'net.mingsoft.cms.action.CategoryAction.update()', '127.0.0.1', '更新分类', 0, NULL, NULL, '2020-12-04 19:58:11', NULL);
  302. INSERT INTO `log` VALUES (103, 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', '生成主页', 0, NULL, NULL, '2020-12-04 19:58:42', NULL);
  303. INSERT INTO `log` VALUES (104, 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', '生成栏目', 0, NULL, NULL, '2020-12-04 19:59:01', NULL);
  304. INSERT INTO `log` VALUES (105, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"createBy\":[\"0\"],\n \"createDate\":[\"\"],\n \"del\":[\"0\"],\n \"id\":[\"1\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"0\"],\n \"updateDate\":[\"\"],\n \"order\":[\"\"],\n \"appName\":[\"MCMS-OPEN\"],\n \"appDescription\":[\"铭飞MCMS\"],\n \"appLogo\":[\"[{\\\"path\\\":\\\"/upload/1/appLogo/1578375538540.jpg\\\",\\\"url\\\":\\\"/upload/1/appLogo/1578375538540.jpg\\\",\\\"uid\\\":1604106086351,\\\"status\\\":\\\"success\\\"}]\"],\n \"appStyle\":[\"default\"],\n \"appKeyword\":[\"铭飞MCMS\"],\n \"appCopyright\":[\"版权所有 ©铭飞科技有限公司2012-2019 保留一切权利。\"],\n \"appDir\":[\"a\"],\n \"appUrl\":[\"http://localhost:8080\"],\n \"appDatetime\":[\"\"],\n \"appPayDate\":[\"2019-11-17 18:00:00\"],\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', '更新站点信息', 0, NULL, NULL, '2020-12-04 19:59:25', NULL);
  305. INSERT INTO `log` VALUES (106, 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', '生成主页', 0, NULL, NULL, '2020-12-04 19:59:31', NULL);
  306. INSERT INTO `log` VALUES (107, 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', '生成栏目', 0, NULL, NULL, '2020-12-04 19:59:33', NULL);
  307. INSERT INTO `log` VALUES (108, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"dateTime\":[\"2020-12-01\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/generateArticle.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateArticle()', '127.0.0.1', '生成文章', 0, NULL, NULL, '2020-12-04 19:59:33', NULL);
  308. INSERT INTO `log` VALUES (109, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"1329257213283344385\"\n }\n}', '{\n \"createBy\":[\"57\"],\n \"createDate\":[\"2020-11-20 00:56:31\"],\n \"del\":[\"0\"],\n \"id\":[\"1329257213283344385\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"57\"],\n \"updateDate\":[\"2020-12-05 09:58:01\"],\n \"order\":[\"\"],\n \"categoryTitle\":[\"公司产品\"],\n \"categoryPinyin\":[\"product\"],\n \"categoryId\":[\"\"],\n \"categoryType\":[\"1\"],\n \"categorySort\":[\"0\"],\n \"categoryListUrl\":[\"product-list.htm\"],\n \"categoryUrl\":[\"product-detail.htm\"],\n \"categoryKeyword\":[\"\"],\n \"categoryDescrip\":[\"\"],\n \"categoryImg\":[\"[]\"],\n \"categoryDiyUrl\":[\"\"],\n \"mdiyModelId\":[\"\"],\n \"categoryDatetime\":[\"\"],\n \"dictId\":[\"\"],\n \"categoryFlag\":[\"n\"],\n \"categoryPath\":[\"/product\"],\n \"categoryParentIds\":[\"\"],\n \"leaf\":[\"false\"],\n \"topId\":[\"0\"],\n \"flag\":[\"n\"],\n \"parentids\":[\"\"],\n \"typetitle\":[\"公司产品\"],\n \"typelink\":[\"/product/index.html\"],\n \"typekeyword\":[\"\"],\n \"typeurl\":[\"\"],\n \"typedescrip\":[\"\"],\n \"typeid\":[\"1329257213283344385\"],\n \"typelitpic\":[\"[]\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/category/update.do', 'POST', 'net.mingsoft.cms.action.CategoryAction.update()', '127.0.0.1', '更新分类', 0, NULL, NULL, '2020-12-04 20:00:15', NULL);
  309. INSERT INTO `log` VALUES (110, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"dateTime\":[\"2020-12-01\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/generateArticle.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateArticle()', '127.0.0.1', '生成文章', 0, NULL, NULL, '2020-12-04 20:00:18', NULL);
  310. INSERT INTO `log` VALUES (111, 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', '生成栏目', 0, NULL, NULL, '2020-12-04 20:00:19', NULL);
  311. INSERT INTO `log` VALUES (112, 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', '生成主页', 0, NULL, NULL, '2020-12-04 20:28:29', NULL);
  312. INSERT INTO `log` VALUES (113, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"dateTime\":[\"2020-11-02\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/generateArticle.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateArticle()', '127.0.0.1', '生成文章', 0, NULL, NULL, '2020-12-04 20:28:40', NULL);
  313. INSERT INTO `log` VALUES (114, 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', '生成栏目', 0, NULL, NULL, '2020-12-04 20:28:45', NULL);
  314. INSERT INTO `log` VALUES (115, 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', '生成主页', 0, NULL, NULL, '2020-12-04 21:50:27', NULL);
  315. INSERT INTO `log` VALUES (116, NULL, '{\n \"result\":true,\n \"code\":200\n}', '{\n \"dateTime\":[\"2020-12-05\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/generate/0/generateArticle.do', 'POST', 'net.mingsoft.cms.action.GeneraterAction.generateArticle()', '127.0.0.1', '生成文章', 0, NULL, NULL, '2020-12-04 21:50:31', NULL);
  316. INSERT INTO `log` VALUES (117, 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', '生成栏目', 0, NULL, NULL, '2020-12-04 21:50:35', NULL);
  317. INSERT INTO `log` VALUES (118, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"1329257757913718785\"\n }\n}', '{\n \"createBy\":[\"57\"],\n \"createDate\":[\"2020-11-20 00:58:41\"],\n \"del\":[\"0\"],\n \"id\":[\"1329257757913718785\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"57\"],\n \"updateDate\":[\"2020-12-05 09:58:11\"],\n \"order\":[\"\"],\n \"categoryTitle\":[\"开源产品\"],\n \"categoryPinyin\":[\"kycp\"],\n \"categoryId\":[\"1329257213283344385\"],\n \"categoryType\":[\"1\"],\n \"categorySort\":[\"0\"],\n \"categoryListUrl\":[\"product.htm\"],\n \"categoryUrl\":[\"product-detail1.htm\"],\n \"categoryKeyword\":[\"\"],\n \"categoryDescrip\":[\"\"],\n \"categoryImg\":[\"[]\"],\n \"categoryDiyUrl\":[\"\"],\n \"mdiyModelId\":[\"\"],\n \"categoryDatetime\":[\"\"],\n \"dictId\":[\"\"],\n \"categoryFlag\":[\"\"],\n \"categoryPath\":[\"/product/kycp\"],\n \"categoryParentIds\":[\"1329257213283344385\"],\n \"leaf\":[\"true\"],\n \"topId\":[\"1329257213283344385\"],\n \"flag\":[\"n\"],\n \"parentids\":[\"1329257213283344385\"],\n \"typetitle\":[\"开源产品\"],\n \"typelink\":[\"/product/kycp/index.html\"],\n \"typekeyword\":[\"\"],\n \"typeurl\":[\"\"],\n \"typedescrip\":[\"\"],\n \"typeid\":[\"1329257757913718785\"],\n \"typelitpic\":[\"[]\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/category/update.do', 'POST', 'net.mingsoft.cms.action.CategoryAction.update()', '127.0.0.1', '更新分类', 0, NULL, NULL, '2020-12-04 21:50:49', NULL);
  318. INSERT INTO `log` VALUES (119, NULL, '{\n \"result\":true,\n \"code\":200,\n \"data\":{\n \"id\":\"1329257282518720513\"\n }\n}', '{\n \"createBy\":[\"57\"],\n \"createDate\":[\"2020-11-20 00:56:47\"],\n \"del\":[\"0\"],\n \"id\":[\"1329257282518720513\"],\n \"remarks\":[\"\"],\n \"updateBy\":[\"57\"],\n \"updateDate\":[\"2020-11-20 08:31:51\"],\n \"order\":[\"\"],\n \"categoryTitle\":[\"新闻动态\"],\n \"categoryPinyin\":[\"news\"],\n \"categoryId\":[\"\"],\n \"categoryType\":[\"1\"],\n \"categorySort\":[\"0\"],\n \"categoryListUrl\":[\"news-list.htm\"],\n \"categoryUrl\":[\"news-detail.htm\"],\n \"categoryKeyword\":[\"\"],\n \"categoryDescrip\":[\"\"],\n \"categoryImg\":[\"[]\"],\n \"categoryDiyUrl\":[\"\"],\n \"mdiyModelId\":[\"\"],\n \"categoryDatetime\":[\"\"],\n \"dictId\":[\"\"],\n \"categoryFlag\":[\"n\"],\n \"categoryPath\":[\"/news\"],\n \"categoryParentIds\":[\"\"],\n \"leaf\":[\"false\"],\n \"topId\":[\"0\"],\n \"flag\":[\"d\"],\n \"parentids\":[\"\"],\n \"typetitle\":[\"新闻动态\"],\n \"typelink\":[\"/news/index.html\"],\n \"typekeyword\":[\"\"],\n \"typeurl\":[\"\"],\n \"typedescrip\":[\"\"],\n \"typeid\":[\"1329257282518720513\"],\n \"typelitpic\":[\"[]\"]\n}', '内网IP', 'msopen', 'manage', 'update', 'success', '/ms/cms/category/update.do', 'POST', 'net.mingsoft.cms.action.CategoryAction.update()', '127.0.0.1', '更新分类', 0, NULL, NULL, '2020-12-05 02:24:39', NULL);
  319. COMMIT;
  320. -- ----------------------------
  321. -- Table structure for manager
  322. -- ----------------------------
  323. DROP TABLE IF EXISTS `manager`;
  324. CREATE TABLE `manager` (
  325. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id主键',
  326. `role_id` int(11) DEFAULT NULL COMMENT '角色编号',
  327. `people_id` int(11) DEFAULT '0' COMMENT '用户编号即商家编号',
  328. `manager_admin` varchar(255) DEFAULT NULL COMMENT '管理员标识,超级管理员:super,子管理员:open',
  329. `manager_name` varchar(15) DEFAULT NULL COMMENT '管理员用户名',
  330. `manager_nickname` varchar(15) DEFAULT NULL COMMENT '管理员昵称',
  331. `manager_password` varchar(45) DEFAULT NULL COMMENT '管理员密码',
  332. `create_date` datetime DEFAULT NULL,
  333. `update_date` datetime DEFAULT NULL,
  334. `update_by` int(11) DEFAULT NULL,
  335. `create_by` int(11) DEFAULT NULL,
  336. `del` int(11) DEFAULT NULL,
  337. PRIMARY KEY (`id`) USING BTREE,
  338. KEY `fk_manager_role_id` (`role_id`) USING BTREE,
  339. CONSTRAINT `fk_role_id` FOREIGN KEY (`role_id`) REFERENCES `role` (`id`) ON DELETE SET NULL ON UPDATE NO ACTION
  340. ) ENGINE=InnoDB AUTO_INCREMENT=58 DEFAULT CHARSET=utf8 COMMENT='管理员表';
  341. -- ----------------------------
  342. -- Records of manager
  343. -- ----------------------------
  344. BEGIN;
  345. INSERT INTO `manager` VALUES (57, 48, 0, 'super', 'msopen', 'msopen', '9d8622060de5f24937b60585c3f4d66b', NULL, NULL, NULL, NULL, NULL);
  346. COMMIT;
  347. -- ----------------------------
  348. -- Table structure for mdiy_dict
  349. -- ----------------------------
  350. DROP TABLE IF EXISTS `mdiy_dict`;
  351. CREATE TABLE `mdiy_dict` (
  352. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id主键',
  353. `dict_value` varchar(100) COLLATE utf8_bin NOT NULL COMMENT '数据值',
  354. `dict_label` varchar(100) COLLATE utf8_bin NOT NULL COMMENT '标签名',
  355. `dict_type` varchar(100) COLLATE utf8_bin NOT NULL COMMENT '类型',
  356. `dict_description` varchar(100) COLLATE utf8_bin DEFAULT NULL COMMENT '描述',
  357. `is_child` varchar(255) COLLATE utf8_bin DEFAULT NULL COMMENT '扩展业务标记',
  358. `dict_enable` varchar(11) COLLATE utf8_bin DEFAULT '1' COMMENT '启用状态',
  359. `dict_remarks` varchar(255) COLLATE utf8_bin DEFAULT NULL COMMENT '备注信息',
  360. `dict_sort` int(10) NOT NULL DEFAULT '0' COMMENT '排序(升序)',
  361. `create_by` int(64) DEFAULT '0' COMMENT '创建者',
  362. `create_date` datetime DEFAULT NULL COMMENT '创建时间',
  363. `update_by` int(64) DEFAULT '0' COMMENT '更新者',
  364. `update_date` datetime DEFAULT NULL COMMENT '更新时间',
  365. `del` int(1) NOT NULL DEFAULT '0' COMMENT '删除标记',
  366. PRIMARY KEY (`id`) USING BTREE,
  367. KEY `inx_dict_value` (`dict_value`) USING BTREE,
  368. KEY `inx_dict_label` (`dict_label`) USING BTREE
  369. ) ENGINE=InnoDB AUTO_INCREMENT=645 DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='字典表';
  370. -- ----------------------------
  371. -- Records of mdiy_dict
  372. -- ----------------------------
  373. BEGIN;
  374. INSERT INTO `mdiy_dict` VALUES (1, 'f', '幻灯', '文章属性', NULL, NULL, '1', NULL, 3, 0, NULL, 0, NULL, 3);
  375. INSERT INTO `mdiy_dict` VALUES (2, 'p', '图片', '文章属性', NULL, NULL, '1', NULL, 1, 0, NULL, 0, NULL, 3);
  376. INSERT INTO `mdiy_dict` VALUES (3, 'c', '推荐', '文章属性', NULL, NULL, '1', NULL, 4, 0, NULL, 0, NULL, 3);
  377. INSERT INTO `mdiy_dict` VALUES (4, 'h', '头条', '文章属性', NULL, NULL, '1', NULL, 2, 0, NULL, 0, NULL, 3);
  378. INSERT INTO `mdiy_dict` VALUES (621, 'cms', '文章', '自定义模型类型', NULL, '0', '1', NULL, 0, 0, NULL, 0, NULL, 3);
  379. INSERT INTO `mdiy_dict` VALUES (642, 'cms', '文章', '自定义页面类型', NULL, NULL, '1', NULL, 0, 0, '2019-12-29 18:32:46', 0, NULL, 3);
  380. INSERT INTO `mdiy_dict` VALUES (643, 'c', '推荐', '栏目属性', NULL, NULL, '1', NULL, 0, 0, '2020-01-10 14:38:26', 0, NULL, 3);
  381. INSERT INTO `mdiy_dict` VALUES (644, 'n', '导航', '栏目属性', NULL, NULL, '1', NULL, 0, 0, '2020-01-10 14:38:26', 0, NULL, 3);
  382. COMMIT;
  383. -- ----------------------------
  384. -- Table structure for mdiy_model
  385. -- ----------------------------
  386. DROP TABLE IF EXISTS `mdiy_model`;
  387. CREATE TABLE `mdiy_model` (
  388. `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  389. `model_json` text COMMENT 'json',
  390. `model_table_name` varchar(255) DEFAULT NULL COMMENT '模型表名',
  391. `model_name` varchar(30) DEFAULT NULL COMMENT '模型名称',
  392. `model_type` varchar(255) DEFAULT NULL COMMENT '自定义模型类型,自定义表单不用该字段',
  393. `update_date` datetime DEFAULT NULL COMMENT '修改时间',
  394. `update_by` int(11) DEFAULT NULL COMMENT '修改人',
  395. `create_date` datetime DEFAULT NULL COMMENT '创建时间',
  396. `create_by` int(11) DEFAULT NULL COMMENT '创建人',
  397. `model_field` text COMMENT '模型字段',
  398. `model_custom_type` varchar(255) DEFAULT NULL COMMENT '类型,自定义表单:post,自定义模型:model',
  399. `del` int(1) DEFAULT NULL COMMENT '删除标记',
  400. PRIMARY KEY (`id`) USING BTREE
  401. ) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8 COMMENT='自定义模型';
  402. -- ----------------------------
  403. -- Records of mdiy_model
  404. -- ----------------------------
  405. BEGIN;
  406. INSERT INTO `mdiy_model` VALUES (41, '{\"html\":\"<template id=\\\"custom-model\\\">\\r\\n <el-form ref=\\\"form\\\" :model=\\\"form\\\" :rules=\\\"rules\\\" label-width=\\\"120px\\\" label-position=\\\"right\\\" size=\\\"small\\\">\\r\\n <el-form-item label=\\\"姓名\\\" prop=\\\"name\\\"\\r\\n>\\r\\n <el-input v-model=\\\"form.name\\\"\\r\\n :disabled=\\\"false\\\"\\r\\n :style=\\\"{width: \'100%\'}\\\"\\r\\n :clearable=\\\"true\\\"\\r\\n placeholder=\\\"请输入姓名\\\">\\r\\n </el-input>\\r\\n </el-form-item>\\r\\n <el-form-item label=\\\"手机\\\" prop=\\\"phone\\\"\\r\\n>\\r\\n <el-input v-model=\\\"form.phone\\\"\\r\\n :disabled=\\\"false\\\"\\r\\n :style=\\\"{width: \'100%\'}\\\"\\r\\n :clearable=\\\"true\\\"\\r\\n placeholder=\\\"请输入手机\\\">\\r\\n </el-input>\\r\\n </el-form-item>\\r\\n <el-form-item label=\\\"留言\\\" prop=\\\"words\\\"\\r\\n>\\r\\n <el-input\\r\\n type=\\\"textarea\\\" :rows=\\\"5\\\"\\r\\n :disabled=\\\"false\\\"\\r\\n\\r\\n v-model=\\\"form.words\\\"\\r\\n :style=\\\"{width: \'100%\'}\\\"\\r\\n placeholder=\\\"请输入留言\\\">\\r\\n </el-input>\\r\\n </el-form-item>\\r\\n </el-form>\\r\\n</template>\\r\\n\",\"script\":\" var custom_model = Vue.component(\\\"custom-model\\\",{\\r\\n el: \'#custom-model\',\\r\\n data() {\\r\\n return {\\r\\n modelId:0,\\r\\n //表单数据\\r\\n form: {\\r\\n linkId:0,\\r\\n // 姓名\\r\\n name:\'\',\\r\\n // 手机\\r\\n phone:\'\',\\r\\n // 留言\\r\\n words:\'\',\\r\\n },\\r\\n rules:{\\r\\n },\\r\\n\\r\\n }\\r\\n },\\r\\n watch:{\\r\\n },\\r\\n computed:{\\r\\n },\\r\\n methods: {\\r\\n validate(){\\r\\n var b = false\\r\\n this.$refs.form.validate((valid) => {\\r\\n b = valid;\\r\\n });\\r\\n return b;\\r\\n },\\r\\n save() {\\r\\n var that = this;\\r\\n var success = false;\\r\\n var url = ms.manager + \\\"/mdiy/model/data/save.do\\\"\\r\\n if (that.form.id > 0) {\\r\\n url = ms.manager + \\\"/mdiy/model/data/update.do\\\";\\r\\n }\\r\\n this.$refs.form.validate((valid) => {\\r\\n if (valid) {\\r\\n var data = JSON.parse(JSON.stringify(that.form));\\r\\n data.modelId = that.modelId;\\r\\n ms.http.post(url, data).then(function (res) {\\r\\n if (res.data.id > 0) {\\r\\n success = true;\\r\\n }\\r\\n });\\r\\n } else {\\r\\n return false;\\r\\n }\\r\\n })\\r\\n return success;\\r\\n },\\r\\n //获取当前意见反馈\\r\\n get(id) {\\r\\n var that = this;\\r\\n ms.http.get(ms.manager + \\\"/mdiy/model/data.do\\\", {modelId:this.modelId,linkId:id}).then(function (res) {\\r\\n if(res.result&&res.data){\\r\\n that.form = res.data;\\r\\n }\\r\\n }).catch(function (err) {\\r\\n console.log(err);\\r\\n });\\r\\n },\\r\\n },\\r\\n created() {\\r\\n this.get(this.form.linkId);\\r\\n }\\r\\n });\\r\\n\\r\\n\"}', 'mdiy_post_feedback', '意见反馈', NULL, NULL, 0, NULL, 0, '[\r\n{\r\n \"model\":\"name\",\r\n \"key\":\"name\",\r\n \"javaType\":\"String\",\r\n \"jdbcType\":\"VARCHAR\",\r\n \"name\":\"姓名\",\r\n \"type\":\"input\"\r\n }\r\n ,{\r\n \"model\":\"phone\",\r\n \"key\":\"phone\",\r\n \"javaType\":\"String\",\r\n \"jdbcType\":\"VARCHAR\",\r\n \"name\":\"手机\",\r\n \"type\":\"input\"\r\n }\r\n ,{\r\n \"model\":\"words\",\r\n \"key\":\"words\",\r\n \"javaType\":\"String\",\r\n \"jdbcType\":\"VARCHAR\",\r\n \"name\":\"留言\",\r\n \"type\":\"textarea\"\r\n }\r\n]', 'post', 0);
  407. INSERT INTO `mdiy_model` VALUES (45, '{\"html\":\"<template id=\\\"custom-model\\\">\\r\\n <el-form ref=\\\"form\\\" :model=\\\"form\\\" :rules=\\\"rules\\\" label-width=\\\"120px\\\" label-position=\\\"right\\\" size=\\\"small\\\">\\r\\n\\r\\n <el-form-item label=\\\"评分\\\" prop=\\\"rate\\\">\\r\\n <el-rate v-model=\\\"form.rate\\\" :max=\\\"5\\\" :disabled=\\\"false\\\"\\r\\n :allow-half=\\\"false\\\"></el-rate>\\r\\n </el-form-item>\\r\\n\\r\\n <el-form-item label=\\\"内容\\\" prop=\\\"textarea\\\">\\r\\n <el-input\\r\\n type=\\\"textarea\\\" :rows=\\\"5\\\"\\r\\n :disabled=\\\"false\\\"\\r\\n :readonly=\\\"false\\\"\\r\\n v-model=\\\"form.textarea\\\"\\r\\n :style=\\\"{width: \'100%\'}\\\"\\r\\n placeholder=\\\"请输入内容\\\">\\r\\n </el-input>\\r\\n </el-form-item>\\r\\n\\r\\n <el-form-item label=\\\"联系方式\\\" prop=\\\"contactInformation\\\">\\r\\n <el-input\\r\\n v-model=\\\"form.contactInformation\\\"\\r\\n :disabled=\\\"false\\\"\\r\\n :readonly=\\\"false\\\"\\r\\n :style=\\\"{width: \'100%\'}\\\"\\r\\n :clearable=\\\"true\\\"\\r\\n placeholder=\\\"请输入联系方式\\\">\\r\\n </el-input>\\r\\n </el-form-item>\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n </el-form>\\r\\n</template>\\r\\n\",\"script\":\" var custom_model = Vue.component(\\\"custom-model\\\",{\\r\\n el: \'#custom-model\',\\r\\n data:function() {\\r\\n return {\\r\\n modelId:0,\\r\\n //表单数据\\r\\n form: {\\r\\n linkId:0,\\r\\n // 评分\\r\\n rate:0,\\r\\n // 内容\\r\\n textarea:\'\',\\r\\n // 联系方式\\r\\n contactInformation:\'\',\\r\\n },\\r\\n rules:{\\r\\n // 联系方式\\r\\n contactInformation: [{\\\"pattern\\\":/^([0-9]{3,4}-)?[0-9]{7,8}$|^\\\\d{3,4}-\\\\d{3,4}-\\\\d{3,4}$|^1[0-9]{10}$/,\\\"message\\\":\\\"联系方式格式不匹配\\\"},{\\\"min\\\":0,\\\"max\\\":100,\\\"message\\\":\\\"联系方式长度必须为0-100\\\"}],\\r\\n },\\r\\n\\r\\n }\\r\\n },\\r\\n watch:{\\r\\n },\\r\\n computed:{\\r\\n },\\r\\n methods: {\\r\\n validate:function(){\\r\\n var b = false\\r\\n this.$refs.form.validate((valid) => {\\r\\n b = valid;\\r\\n });\\r\\n return b;\\r\\n },\\r\\n save:function() {\\r\\n var that = this;\\r\\n var success = false;\\r\\n var url = ms.manager + \\\"/mdiy/model/data/save.do\\\"\\r\\n if (that.form.id > 0) {\\r\\n url = ms.manager + \\\"/mdiy/model/data/update.do\\\";\\r\\n }\\r\\n this.$refs.form.validate(function(valid) {\\r\\n if (valid) {\\r\\n var data = JSON.parse(JSON.stringify(that.form));\\r\\n data.modelId = that.modelId;\\r\\n ms.http.post(url, data).then(function (res) {\\r\\n if (res.data.id > 0) {\\r\\n success = true;\\r\\n }\\r\\n });\\r\\n } else {\\r\\n return false;\\r\\n }\\r\\n })\\r\\n return success;\\r\\n },\\r\\n //获取当前调查反馈\\r\\n get:function(id) {\\r\\n var that = this;\\r\\n ms.http.get(ms.manager + \\\"/mdiy/model/data.do\\\", {modelId:this.modelId,linkId:id}).then(function (res) {\\r\\n if(res.result&&res.data){\\r\\n that.form = res.data;\\r\\n }\\r\\n }).catch(function (err) {\\r\\n console.log(err);\\r\\n });\\r\\n },\\r\\n },\\r\\n created:function() {\\r\\n this.get(this.form.linkId);\\r\\n }\\r\\n });\\r\\n\\r\\n\"}', 'mdiy_model_xietestcomment', '评论模型', 'cms', NULL, 0, NULL, 0, '[\r\n{\r\n \"model\":\"rate\",\r\n \"key\":\"rate\",\r\n \"javaType\":\"Integer\",\r\n \"jdbcType\":\"INT\",\r\n \"name\":\"评分\",\r\n \"type\":\"rate\"\r\n }\r\n ,{\r\n \"model\":\"textarea\",\r\n \"key\":\"textarea\",\r\n \"javaType\":\"String\",\r\n \"jdbcType\":\"VARCHAR\",\r\n \"name\":\"内容\",\r\n \"type\":\"textarea\"\r\n }\r\n ,{\r\n \"model\":\"contactInformation\",\r\n \"key\":\"contact_information\",\r\n \"javaType\":\"String\",\r\n \"jdbcType\":\"VARCHAR\",\r\n \"name\":\"联系方式\",\r\n \"type\":\"input\"\r\n }\r\n]', 'model', 0);
  408. INSERT INTO `mdiy_model` VALUES (47, '{\"html\":\"<template id=\\\"custom-model\\\">\\r\\n <el-form ref=\\\"form\\\" :model=\\\"form\\\" :rules=\\\"rules\\\" label-width=\\\"120px\\\" label-position=\\\"right\\\" size=\\\"small\\\">\\r\\n\\r\\n <el-form-item label=\\\"单行文本\\\" prop=\\\"input160574680900056697\\\">\\r\\n <el-input\\r\\n v-model=\\\"form.input160574680900056697\\\"\\r\\n :disabled=\\\"false\\\"\\r\\n :readonly=\\\"false\\\"\\r\\n :style=\\\"{width: \'100%\'}\\\"\\r\\n :clearable=\\\"true\\\"\\r\\n placeholder=\\\"请输入内容\\\">\\r\\n </el-input>\\r\\n </el-form-item>\\r\\n\\r\\n <el-form-item label=\\\"多行文本\\\" prop=\\\"textarea160574681000051652\\\">\\r\\n <el-input\\r\\n type=\\\"textarea\\\" :rows=\\\"5\\\"\\r\\n :disabled=\\\"false\\\"\\r\\n :readonly=\\\"false\\\"\\r\\n v-model=\\\"form.textarea160574681000051652\\\"\\r\\n :style=\\\"{width: \'100%\'}\\\"\\r\\n placeholder=\\\"请输入内容\\\">\\r\\n </el-input>\\r\\n </el-form-item>\\r\\n <el-row\\r\\n gutter=\\\"0\\\"\\r\\n justify=\\\"start\\\" align=\\\"top\\\">\\r\\n <el-col span=\\\"12\\\">\\r\\n\\r\\n <el-form-item label=\\\"下拉选择框\\\" prop=\\\"select160574681900069237\\\">\\r\\n <el-select v-model=\\\"form.select160574681900069237\\\"\\r\\n :style=\\\"{width: \'100%\'}\\\"\\r\\n :filterable=\\\"false\\\"\\r\\n :disabled=\\\"false\\\"\\r\\n :multiple=\\\"false\\\" :clearable=\\\"true\\\"\\r\\n placeholder=\\\"请输入内容\\\">\\r\\n <el-option v-for=\'item in select160574681900069237Options\' :key=\\\"item.value\\\" :value=\\\"item.value\\\"\\r\\n :label=\\\"item.label\\\"></el-option>\\r\\n </el-select>\\r\\n </el-form-item>\\r\\n </el-col>\\r\\n <el-col span=\\\"12\\\">\\r\\n\\r\\n <el-form-item label=\\\"密码框\\\" prop=\\\"password160574681200012096\\\">\\r\\n <el-input type=\\\"password\\\"\\r\\n :show-password=\\\"true\\\"\\r\\n :clearable=\\\"true\\\" autocomplete=\\\"off\\\"\\r\\n v-model=\\\"form.password160574681200012096\\\" :style=\\\"{width:\'100%\'}\\\"\\r\\n :disabled=\\\"false\\\" placeholder=\\\"请输入内容\\\"></el-input>\\r\\n </el-form-item>\\r\\n </el-col>\\r\\n </el-row>\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n </el-form>\\r\\n</template>\\r\\n\",\"script\":\" var custom_model = Vue.component(\\\"custom-model\\\",{\\r\\n el: \'#custom-model\',\\r\\n data:function() {\\r\\n return {\\r\\n modelId:0,\\r\\n //表单数据\\r\\n form: {\\r\\n linkId:0,\\r\\n // 单行文本\\r\\n input160574680900056697:\'\',\\r\\n // 多行文本\\r\\n textarea160574681000051652:\'\',\\r\\n // 下拉选择框\\r\\n select160574681900069237:\'\',\\r\\n // 密码框\\r\\n password160574681200012096:\'\',\\r\\n },\\r\\n select160574681900069237Options:[{\\\"value\\\":\\\"下拉框1\\\",\\\"label\\\":\\\"下拉框1\\\"},{\\\"value\\\":\\\"下拉框2\\\",\\\"label\\\":\\\"下拉框2\\\"},{\\\"value\\\":\\\"下拉框3\\\",\\\"label\\\":\\\"下拉框3\\\"}],\\r\\n rules:{\\r\\n // 单行文本\\r\\n input160574680900056697: [{\\\"min\\\":0,\\\"max\\\":20,\\\"message\\\":\\\"单行文本长度必须为0-20\\\"}],\\r\\n },\\r\\n\\r\\n }\\r\\n },\\r\\n watch:{\\r\\n },\\r\\n computed:{\\r\\n },\\r\\n methods: {\\r\\n validate:function(){\\r\\n var b = false\\r\\n this.$refs.form.validate((valid) => {\\r\\n b = valid;\\r\\n });\\r\\n return b;\\r\\n },\\r\\n save:function() {\\r\\n var that = this;\\r\\n var success = false;\\r\\n var url = ms.manager + \\\"/mdiy/model/data/save.do\\\"\\r\\n if (that.form.id > 0) {\\r\\n url = ms.manager + \\\"/mdiy/model/data/update.do\\\";\\r\\n }\\r\\n this.$refs.form.validate(function(valid) {\\r\\n if (valid) {\\r\\n var data = JSON.parse(JSON.stringify(that.form));\\r\\n data.modelId = that.modelId;\\r\\n ms.http.post(url, data).then(function (res) {\\r\\n if (res.data.id > 0) {\\r\\n success = true;\\r\\n }\\r\\n });\\r\\n } else {\\r\\n return false;\\r\\n }\\r\\n })\\r\\n return success;\\r\\n },\\r\\n //获取当前test\\r\\n get:function(id) {\\r\\n var that = this;\\r\\n ms.http.get(ms.manager + \\\"/mdiy/model/data.do\\\", {modelId:this.modelId,linkId:id}).then(function (res) {\\r\\n if(res.result&&res.data){\\r\\n that.form = res.data;\\r\\n }\\r\\n }).catch(function (err) {\\r\\n console.log(err);\\r\\n });\\r\\n },\\r\\n },\\r\\n created:function() {\\r\\n this.get(this.form.linkId);\\r\\n }\\r\\n });\\r\\n\\r\\n\"}', 'mdiy_model_test', 'test', 'cms', NULL, 0, NULL, 0, '[\r\n{\r\n \"model\":\"input160574680900056697\",\r\n \"key\":\"input_1605746809000_56697\",\r\n \"javaType\":\"String\",\r\n \"jdbcType\":\"VARCHAR\",\r\n \"name\":\"单行文本\",\r\n \"type\":\"input\"\r\n }\r\n ,{\r\n \"model\":\"textarea160574681000051652\",\r\n \"key\":\"textarea_1605746810000_51652\",\r\n \"javaType\":\"String\",\r\n \"jdbcType\":\"VARCHAR\",\r\n \"name\":\"多行文本\",\r\n \"type\":\"textarea\"\r\n }\r\n ,{\r\n \"model\":\"select160574681900069237\",\r\n \"key\":\"select_1605746819000_69237\",\r\n \"javaType\":\"String\",\r\n \"jdbcType\":\"VARCHAR\",\r\n \"name\":\"下拉选择框\",\r\n \"type\":\"select\"\r\n }\r\n ,{\r\n \"model\":\"password160574681200012096\",\r\n \"key\":\"password_1605746812000_12096\",\r\n \"javaType\":\"String\",\r\n \"jdbcType\":\"VARCHAR\",\r\n \"name\":\"密码框\",\r\n \"type\":\"password\"\r\n }\r\n]', 'model', 0);
  409. COMMIT;
  410. -- ----------------------------
  411. -- Table structure for mdiy_model_test
  412. -- ----------------------------
  413. DROP TABLE IF EXISTS `mdiy_model_test`;
  414. CREATE TABLE `mdiy_model_test` (
  415. `input_1605746809000_56697` varchar(255) DEFAULT NULL COMMENT '单行文本',
  416. `textarea_1605746810000_51652` varchar(255) DEFAULT NULL COMMENT '多行文本',
  417. `select_1605746819000_69237` varchar(255) DEFAULT NULL COMMENT '下拉选择框',
  418. `password_1605746812000_12096` varchar(255) DEFAULT NULL COMMENT '密码框',
  419. `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  420. `link_id` int(11) NOT NULL,
  421. PRIMARY KEY (`id`) USING BTREE
  422. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='test';
  423. -- ----------------------------
  424. -- Table structure for mdiy_model_xietestcomment
  425. -- ----------------------------
  426. DROP TABLE IF EXISTS `mdiy_model_xietestcomment`;
  427. CREATE TABLE `mdiy_model_xietestcomment` (
  428. `rate` int(11) DEFAULT NULL COMMENT '评分',
  429. `textarea` varchar(255) DEFAULT NULL COMMENT '内容',
  430. `contact_information` varchar(255) DEFAULT NULL COMMENT '联系方式',
  431. `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  432. `link_id` int(11) NOT NULL,
  433. PRIMARY KEY (`id`) USING BTREE
  434. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='评论模型';
  435. -- ----------------------------
  436. -- Table structure for mdiy_page
  437. -- ----------------------------
  438. DROP TABLE IF EXISTS `mdiy_page`;
  439. CREATE TABLE `mdiy_page` (
  440. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id主键',
  441. `page_model_id` int(11) DEFAULT NULL COMMENT '模块id',
  442. `page_path` varchar(255) DEFAULT NULL COMMENT '自定义页面绑定模板的路径',
  443. `page_title` varchar(255) DEFAULT NULL COMMENT '自定义页面标题',
  444. `page_type` varchar(255) DEFAULT NULL COMMENT '字典分类字段',
  445. `page_key` varchar(255) DEFAULT NULL COMMENT '自定义页面访问路径',
  446. `create_date` datetime DEFAULT NULL,
  447. `create_by` int(11) DEFAULT NULL,
  448. `update_by` int(11) DEFAULT NULL,
  449. `update_date` datetime DEFAULT NULL,
  450. `del` int(1) DEFAULT '0',
  451. PRIMARY KEY (`id`) USING BTREE,
  452. KEY `index_page_key` (`page_key`) USING BTREE,
  453. KEY `index_page_model_id` (`page_model_id`) USING BTREE
  454. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='自定义页面表';
  455. -- ----------------------------
  456. -- Table structure for mdiy_post_feedback
  457. -- ----------------------------
  458. DROP TABLE IF EXISTS `mdiy_post_feedback`;
  459. CREATE TABLE `mdiy_post_feedback` (
  460. `name` varchar(255) DEFAULT NULL COMMENT '姓名',
  461. `phone` varchar(255) DEFAULT NULL COMMENT '手机',
  462. `words` varchar(255) DEFAULT NULL COMMENT '留言',
  463. `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  464. PRIMARY KEY (`id`) USING BTREE
  465. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='意见反馈';
  466. -- ----------------------------
  467. -- Table structure for mdiy_tag
  468. -- ----------------------------
  469. DROP TABLE IF EXISTS `mdiy_tag`;
  470. CREATE TABLE `mdiy_tag` (
  471. `id` int(11) NOT NULL AUTO_INCREMENT,
  472. `tag_name` varchar(255) DEFAULT NULL COMMENT '标签名称',
  473. `tag_type` varchar(255) DEFAULT NULL COMMENT '标签类型',
  474. `tag_description` varchar(255) DEFAULT NULL COMMENT '描述',
  475. PRIMARY KEY (`id`) USING BTREE
  476. ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COMMENT='标签';
  477. -- ----------------------------
  478. -- Records of mdiy_tag
  479. -- ----------------------------
  480. BEGIN;
  481. INSERT INTO `mdiy_tag` VALUES (3, 'arclist', 'list', '文章列表');
  482. INSERT INTO `mdiy_tag` VALUES (4, 'channel', 'list', '通用栏目');
  483. INSERT INTO `mdiy_tag` VALUES (5, 'global', 'single', '全局');
  484. INSERT INTO `mdiy_tag` VALUES (7, 'field', 'single', '文章内容');
  485. INSERT INTO `mdiy_tag` VALUES (8, 'pre', 'single', '文章上一篇');
  486. INSERT INTO `mdiy_tag` VALUES (9, 'page', 'single', '通用分页');
  487. INSERT INTO `mdiy_tag` VALUES (10, 'next', 'single', '文章下一篇');
  488. COMMIT;
  489. -- ----------------------------
  490. -- Table structure for mdiy_tag_sql
  491. -- ----------------------------
  492. DROP TABLE IF EXISTS `mdiy_tag_sql`;
  493. CREATE TABLE `mdiy_tag_sql` (
  494. `id` int(11) NOT NULL AUTO_INCREMENT,
  495. `tag_id` int(11) NOT NULL COMMENT '自定义标签编号',
  496. `tag_sql` text COMMENT '自定义sql支持ftl写法',
  497. `sort` int(11) DEFAULT NULL COMMENT '排序升序',
  498. PRIMARY KEY (`id`) USING BTREE,
  499. KEY `fk_ts_tag_id` (`tag_id`) USING BTREE,
  500. CONSTRAINT `fk_tag_id` FOREIGN KEY (`tag_id`) REFERENCES `mdiy_tag` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION
  501. ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COMMENT='标签对应多个sql语句';
  502. -- ----------------------------
  503. -- Records of mdiy_tag_sql
  504. -- ----------------------------
  505. BEGIN;
  506. INSERT INTO `mdiy_tag_sql` VALUES (5, 3, '<#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,\n category.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\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,\'/\',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??>\n <#if search.categoryIds??>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>', 1);
  507. INSERT INTO `mdiy_tag_sql` VALUES (6, 4, '<#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_parent_ids as parentids,\n category_type as type,\n category_path as typepath,\n leaf as leaf,\n category_img as typelitpic ,\n (select count(*) from cms_category c where c.category_id=id and c.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.categoryParentId??>${column.categoryParentId},</#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\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>cms_content.id</#if>\n</#if>\n\n<#if order?? >\n <#if order==\'desc\'> desc</#if>\n <#if order==\'asc\'> asc</#if>\n</#if>', 1);
  508. INSERT INTO `mdiy_tag_sql` VALUES (7, 5, '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>', 1);
  509. INSERT INTO `mdiy_tag_sql` VALUES (8, 7, 'SELECT \ncms_content.id as id,\nleft(content_title,${titlelen?default(40)}) as title,\ncontent_title as fulltitle,\ncontent_author as author, \ncontent_source as source, \ncontent_details as content,\ncategory_title as typetitle,\ncms_category.id as typeid,\ncms_category.category_img AS typelitpic,\ncms_category.category_path AS typepath,\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,\n<#--动态链接-->\n<#if isDo?? && isDo>\nCONCAT(\'/${modelName}/list.do?typeid=\', cms_category.id) as typelink,\n<#else>\n(SELECT \'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>\ncontent_url 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>', 1);
  510. INSERT INTO `mdiy_tag_sql` VALUES (9, 8, '<#assign select=\"(SELECT \'\')\"/>\r\n<#if orderby?? >\r\n <#if orderby==\"date\"> \r\n <#assign _orderby=\"content_datetime\">\r\n <#elseif orderby==\"updatedate\">\r\n <#assign _orderby=\"content_updatetime\">\r\n <#elseif orderby==\"hit\"> \r\n <#assign _orderby=\"content_hit\">\r\n <#elseif orderby==\"sort\">\r\n <#assign _orderby=\"content_sort\">\r\n <#else><#assign _orderby=\"cms_content.id\"></#if>\r\n <#else>\r\n <#assign _orderby=\"cms_content.id\">\r\n </#if>\r\n<#if pageTag.preId??>\r\nSELECT \r\ncms_content.id as id,\r\nleft(content_title,${titlelen?default(40)}) as title,\r\ncontent_title as fulltitle,\r\ncontent_author as author, \r\ncontent_source as source, \r\ncontent_details as content,\r\ncategory.category_title as typename,\r\ncategory.category_id as typeid,\r\n(SELECT \'index.html\') as typelink,\r\ncontent_img as litpic,\r\n<#--内容页动态链接-->\r\n <#if isDo?? && isDo>\r\n CONCAT(\'/${modelName}/view.do?id=\', cms_content.id,\'&orderby=${_orderby}\',\'&order=${order!\'ASC\'}\',\'&typeid=${typeid}\') as \"link\",\r\n <#else>\r\n CONCAT(category_path,\'/\',cms_content.id,\'.html\') AS \"link\",\r\n </#if>\r\ncontent_datetime as \"date\",\r\ncontent_description as descrip,\r\ncontent_hit as hit,\r\ncontent_type as flag,\r\ncontent_keyword as keyword \r\nFROM cms_content \r\nLEFT JOIN cms_category as category ON cms_content.category_id=category.id \r\nWHERE cms_content.id=${pageTag.preId}\r\n<#else>\r\nSELECT \r\n${select} as id,\r\n${select} as title,\r\n${select} as fulltitle,\r\n${select} as author, \r\n${select} as source, \r\n${select} as content,\r\n${select} as typename,\r\n${select} as typeid,\r\n${select} as typelink,\r\n${select} as litpic,\r\n${select} as \"link\",\r\n${select} as \"date\",\r\n${select} as descrip,\r\n${select} as hit,\r\n${select} as flag,\r\n${select} as keyword FROM cms_content \r\n</#if>', NULL);
  511. INSERT INTO `mdiy_tag_sql` VALUES (10, 9, '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 \'${pageTag.total}\' as \"total\",\n \'${pageTag.size}\' as \"size\",\n \'${pageTag.rcount}\' as \"rcount\",\n \'${pageTag.pageNo}\' as \"cur\"\n</#if>', NULL);
  512. INSERT INTO `mdiy_tag_sql` VALUES (11, 10, '<#assign select=\"(SELECT \'\')\"/>\r\n<#if orderby?? >\r\n <#if orderby==\"date\"> \r\n <#assign _orderby=\"content_datetime\">\r\n <#elseif orderby==\"updatedate\">\r\n <#assign _orderby=\"content_updatetime\">\r\n <#elseif orderby==\"hit\"> \r\n <#assign _orderby=\"content_hit\">\r\n <#elseif orderby==\"sort\">\r\n <#assign _orderby=\"content_sort\">\r\n <#else><#assign _orderby=\"cms_content.id\"></#if>\r\n <#else>\r\n <#assign _orderby=\"cms_content.id\">\r\n </#if>\r\n<#if pageTag.nextId??>\r\nSELECT \r\ncms_content.id as id,\r\nleft(content_title,${titlelen?default(40)}) as title,\r\ncontent_title as fulltitle,\r\ncontent_author as author, \r\ncontent_source as source, \r\ncontent_details as content,\r\ncategory.category_title as typename,\r\ncategory.category_id as typeid,\r\n(SELECT \'index.html\') as typelink,\r\ncontent_img as litpic,\r\n<#--内容页动态链接-->\r\n <#if isDo?? && isDo>\r\n CONCAT(\'/${modelName}/view.do?id=\', cms_content.id,\'&orderby=${_orderby}\',\'&order=${order!\'ASC\'}\',\'&typeid=${typeid}\') as \"link\",\r\n <#else>\r\n CONCAT(category_path,\'/\',cms_content.id,\'.html\') AS \"link\",\r\n </#if>\r\ncontent_datetime as \"date\",\r\ncontent_description as descrip,\r\ncontent_hit as hit,\r\ncontent_type as flag,\r\ncontent_keyword as keyword \r\nFROM cms_content \r\nLEFT JOIN cms_category as category ON cms_content.category_id=category.id \r\nWHERE cms_content.id=${pageTag.nextId}\r\n<#else>\r\nSELECT \r\n${select} as id,\r\n${select} as title,\r\n${select} as fulltitle,\r\n${select} as author, \r\n${select} as source, \r\n${select} as content,\r\n${select} as typename,\r\n${select} as typeid,\r\n${select} as typelink,\r\n${select} as litpic,\r\n${select} as \"link\",\r\n${select} as \"date\",\r\n${select} as descrip,\r\n${select} as hit,\r\n${select} as flag,\r\n${select} as keyword FROM cms_content \r\n</#if>', NULL);
  513. COMMIT;
  514. -- ----------------------------
  515. -- Table structure for model
  516. -- ----------------------------
  517. DROP TABLE IF EXISTS `model`;
  518. CREATE TABLE `model` (
  519. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id主键',
  520. `model_id` int(22) DEFAULT NULL COMMENT '模块的父模块id',
  521. `manager_id` int(11) DEFAULT NULL COMMENT '模块关联的关联员id',
  522. `model_parent_ids` varchar(300) DEFAULT NULL COMMENT '父级编号集合,从小到大排序',
  523. `model_code` varchar(255) DEFAULT NULL COMMENT '模块编码',
  524. `model_title` varchar(150) DEFAULT NULL COMMENT '模块标题',
  525. `model_url` varchar(255) DEFAULT NULL COMMENT '模块连接地址',
  526. `model_icon` varchar(120) DEFAULT NULL COMMENT '模块图标',
  527. `model_sort` int(11) DEFAULT NULL COMMENT '模块的排序',
  528. `model_ismenu` int(1) DEFAULT '0' COMMENT '模块是否是菜单',
  529. `IS_CHILD` varchar(300) DEFAULT NULL COMMENT '扩展字段',
  530. `model_datetime` datetime DEFAULT NULL,
  531. PRIMARY KEY (`id`) USING BTREE,
  532. KEY `idx_model_id` (`model_id`) USING BTREE,
  533. CONSTRAINT `fk_model_id` FOREIGN KEY (`model_id`) REFERENCES `model` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION
  534. ) ENGINE=InnoDB AUTO_INCREMENT=1668 DEFAULT CHARSET=utf8 COMMENT='模块表';
  535. -- ----------------------------
  536. -- Records of model
  537. -- ----------------------------
  538. BEGIN;
  539. INSERT INTO `model` VALUES (23, NULL, 0, NULL, '01000000', '权限管理', '', 'icon-quanxianguanli', 5, 1, NULL, '2014-09-09 10:12:22');
  540. INSERT INTO `model` VALUES (84, NULL, 0, NULL, '12000000', '系统设置', '', 'icon-xitongguanli', 3, 1, NULL, '2014-12-19 22:30:24');
  541. INSERT INTO `model` VALUES (86, 84, 0, '84', '12010000', '应用设置', 'app/-1/edit.do', '', 2, 1, NULL, '2014-12-19 22:31:59');
  542. INSERT INTO `model` VALUES (87, 84, 0, '84', '12020000', '模版管理', 'template/index.do', '', 1, 1, NULL, '2014-12-19 22:32:50');
  543. INSERT INTO `model` VALUES (182, 86, 0, '84,86', '12010004', '修改', 'app:update', '', 0, 0, NULL, '2017-09-05 16:14:42');
  544. INSERT INTO `model` VALUES (183, 23, 0, '23', '01030000', '菜单管理', 'model/index.do', '', 0, 1, NULL, '2017-09-05 13:09:26');
  545. INSERT INTO `model` VALUES (184, 183, 0, '23,183', '01030001', '查看', 'model:view', '', 0, 0, NULL, '2017-09-05 13:10:43');
  546. INSERT INTO `model` VALUES (201, 183, 0, '23,183', '01030002', '新增', 'model:save', NULL, 0, 0, NULL, '2019-12-28 14:26:29');
  547. INSERT INTO `model` VALUES (202, 183, 0, '23,183', '01030004', '修改', 'model:update', NULL, 0, 0, NULL, '2019-12-28 14:26:33');
  548. INSERT INTO `model` VALUES (204, 87, 0, '84,87', '12020002', '上传', 'template:upload', '', 0, 0, NULL, '2019-12-28 14:26:37');
  549. INSERT INTO `model` VALUES (217, NULL, 0, NULL, '07000000', '会员中心', '', 'icon-huiyuanzhongxin', 0, 1, NULL, '2018-10-29 21:30:44');
  550. INSERT INTO `model` VALUES (218, 217, 0, '217', '07020100', '用户管理', 'people/peopleUser/index.do', NULL, 0, 1, NULL, '2018-10-29 21:30:44');
  551. INSERT INTO `model` VALUES (219, 218, 0, '217,218', '07020104', '修改', 'people:user:update', '', 0, 0, NULL, '2018-10-29 21:30:44');
  552. INSERT INTO `model` VALUES (220, 218, 0, '217,218', '07020103', '删除', 'people:user:del', '', 0, 0, NULL, '2018-10-29 21:30:44');
  553. INSERT INTO `model` VALUES (221, 218, 0, '217,218', '07020102', '新增', 'people:user:save', '', 0, 0, NULL, '2018-10-29 21:30:44');
  554. INSERT INTO `model` VALUES (222, 218, 0, '217,218', '07020101', '查看', 'people:view', NULL, 0, 0, NULL, '2018-10-29 21:30:45');
  555. INSERT INTO `model` VALUES (264, NULL, 0, '264', '20000000', '自定义管理', '', 'icon-zidingyiguanli', 0, 1, NULL, '2018-09-07 11:38:51');
  556. INSERT INTO `model` VALUES (265, 264, 0, '264', '20010000', '自定义页面', 'mdiy/page/index.do', NULL, 0, 1, NULL, '2018-09-07 11:38:51');
  557. INSERT INTO `model` VALUES (266, 269, 0, '264,269', '20010004', '修改', 'mdiy:form:update', NULL, 0, 0, NULL, '2018-09-07 11:38:51');
  558. INSERT INTO `model` VALUES (267, 269, 0, '264,269', '20010002', '新增', 'mdiy:form:save', NULL, 0, 0, NULL, '2018-09-07 11:38:51');
  559. INSERT INTO `model` VALUES (268, 269, 0, '264,269', '20010001', '查看', 'mdiy:form:view', NULL, 0, 0, NULL, '2018-09-07 11:38:51');
  560. INSERT INTO `model` VALUES (269, 264, 0, '264', '20020000', '自定义表单', 'mdiy/post/index.do', NULL, 0, 1, NULL, '2018-09-07 11:38:51');
  561. INSERT INTO `model` VALUES (280, 264, 0, '264', '20050000', '自定义字典', 'mdiy/dict/index.do', NULL, 0, 1, NULL, '2018-09-07 11:38:53');
  562. INSERT INTO `model` VALUES (281, 280, 0, '264,280', '20050003', '删除', 'mdiy:dict:del', NULL, 0, 0, NULL, '2018-09-07 11:38:53');
  563. INSERT INTO `model` VALUES (282, 280, 0, '264,280', '20050004', '修改', 'mdiy:dict:update', NULL, 0, 0, NULL, '2018-09-07 11:38:53');
  564. INSERT INTO `model` VALUES (283, 280, 0, '264,280', '20050002', '新增', 'mdiy:dict:save', NULL, 0, 0, NULL, '2018-09-07 11:38:53');
  565. INSERT INTO `model` VALUES (284, 280, 0, '264,280', '20050001', '查看', 'mdiy:dict:view', NULL, 0, 0, NULL, '2018-09-07 11:38:53');
  566. INSERT INTO `model` VALUES (299, 265, 0, '264,265', '299', '新增', 'mdiy:page:save', '', 0, 0, NULL, '2019-05-28 18:04:32');
  567. INSERT INTO `model` VALUES (300, 265, 0, '264,265', '300', '修改', 'mdiy:page:update', '', 0, 0, NULL, '2019-05-28 18:05:11');
  568. INSERT INTO `model` VALUES (301, 265, 0, '264,265', '301', '删除', 'mdiy:page:del', '', 0, 0, NULL, '2019-05-28 18:42:10');
  569. INSERT INTO `model` VALUES (406, 23, 0, '23', '406', '角色管理', 'basic/role/index.do', '', 0, 1, NULL, '2019-08-03 19:18:47');
  570. INSERT INTO `model` VALUES (407, 406, 0, '23,406', '407', '新增', 'role:save', '', 0, 0, NULL, '2019-08-03 19:19:10');
  571. INSERT INTO `model` VALUES (408, 406, 0, '23,406', '408', '修改', 'role:update', '', 0, 0, NULL, '2019-08-03 19:19:34');
  572. INSERT INTO `model` VALUES (409, 406, 0, '23,406', '409', '删除', 'role:del', '', 0, 0, NULL, '2019-08-03 19:19:59');
  573. INSERT INTO `model` VALUES (411, 23, 0, '23', '411', '管理员管理', 'basic/manager/index.do', '', 0, 1, NULL, '2019-08-04 12:54:38');
  574. INSERT INTO `model` VALUES (412, 411, 0, '23,411', '412', '查看', 'manager:view', '', 0, 0, NULL, '2019-08-04 12:56:13');
  575. INSERT INTO `model` VALUES (538, 264, 0, '264,264', '15730944491834300', '自定义模型', 'mdiy/model/index.do', '', 0, 1, NULL, '2019-11-08 14:36:46');
  576. INSERT INTO `model` VALUES (540, 538, 0, '264,538', '15730944491833822', '删除', 'mdiy:model:del', NULL, 0, 0, NULL, '2019-11-08 14:36:47');
  577. INSERT INTO `model` VALUES (542, 538, 0, '264,538', '15730944491832459', '查看', 'mdiy:model:view', NULL, 0, 0, NULL, '2019-11-08 14:36:47');
  578. INSERT INTO `model` VALUES (553, 538, 0, '264,538', 'importJson', '导入', 'mdiy:model:importJson', '', 0, 0, NULL, '2019-11-08 17:46:53');
  579. INSERT INTO `model` VALUES (554, 269, 0, '264,269', 'mdiy:form:del', '删除', 'mdiy:form:del', '', 0, 0, NULL, '2019-11-08 19:14:40');
  580. INSERT INTO `model` VALUES (661, 218, 0, '217,218', '543434354', '审核', 'people:user:check', '', 0, 0, NULL, '2019-11-17 19:38:17');
  581. INSERT INTO `model` VALUES (663, 411, 0, '23,411', '15737980803547570', '删除', 'manager:del', '', 0, 0, NULL, '2019-11-19 18:19:35');
  582. INSERT INTO `model` VALUES (664, 411, 0, '23,411', '15737980853527702', '更新', 'manager:update', '', 0, 0, NULL, '2019-11-19 18:21:08');
  583. INSERT INTO `model` VALUES (665, 411, 0, '23,411', '15735981803267702', '新增', 'manager:save', '', 0, 0, NULL, '2019-11-19 18:21:42');
  584. INSERT INTO `model` VALUES (668, 183, 0, '23,183', '668', '删除', 'model:del', '', 0, 0, NULL, '2019-11-19 18:35:49');
  585. INSERT INTO `model` VALUES (672, 87, 0, '84,87', '5434345', '删除', 'template:del', '', 0, 0, NULL, '2019-11-19 19:05:09');
  586. INSERT INTO `model` VALUES (673, 87, 0, '84,87', '452435345', '更新', 'template:update', '', 0, 0, NULL, '2019-11-19 19:05:35');
  587. INSERT INTO `model` VALUES (685, 84, 0, '84', '65123656532', '系统日志', 'basic/log/index.do', '', 0, 1, NULL, '2019-11-22 21:13:50');
  588. INSERT INTO `model` VALUES (686, 685, 0, '84,685', '351463145634', '查看', 'basic:log:view', '', 0, 0, NULL, '2019-11-22 21:14:24');
  589. INSERT INTO `model` VALUES (706, NULL, 0, NULL, '02000000', '内容管理', '', 'icon-neirongguanli', 5, 1, NULL, '2019-11-23 20:14:59');
  590. INSERT INTO `model` VALUES (707, 706, 0, '706', '02980000', '文章管理', 'cms/content/index.do', '', 3, 1, NULL, '2019-11-23 20:16:25');
  591. INSERT INTO `model` VALUES (708, 706, 0, '706', '02990000', '栏目管理', 'cms/category/index.do', '', 2, 1, NULL, '2019-11-23 20:16:50');
  592. INSERT INTO `model` VALUES (709, 706, 0, '706', '02020000', '静态化', 'cms/generate/index.do', '', 1, 1, NULL, '2019-11-23 20:17:15');
  593. INSERT INTO `model` VALUES (710, 709, 0, '706,709', '02020004', '生成文章', 'cms:generate:article', '', 0, 0, NULL, '2019-11-23 20:17:39');
  594. INSERT INTO `model` VALUES (711, 709, 0, '706,709', '02020003', '生成栏目', 'cms:generate:column', '', 0, 0, NULL, '2019-11-23 20:18:05');
  595. INSERT INTO `model` VALUES (713, 709, 0, '706,709', '02020001', '查看', 'cms:generate:view', '', 0, 0, NULL, '2019-11-23 20:18:48');
  596. INSERT INTO `model` VALUES (714, 709, 0, '706,709', '56454656', '生成主页', 'cms:generate:index', '', 0, 0, NULL, '2019-11-23 20:20:10');
  597. INSERT INTO `model` VALUES (715, 708, 0, '706,708', '02990004', '新增', 'cms:category:save', '', 0, 0, NULL, '2019-11-23 20:20:42');
  598. INSERT INTO `model` VALUES (716, 708, 0, '706,708', '02990003', '修改', 'cms:category:update', '', 0, 0, NULL, '2019-11-23 20:21:36');
  599. INSERT INTO `model` VALUES (717, 708, 0, '706,708', '02990001', '查看', 'cms:category:view', '', 0, 0, NULL, '2019-11-23 20:22:05');
  600. INSERT INTO `model` VALUES (718, 707, 0, '706,707', '02980002', '新增', 'cms:content:save', '', 0, 0, NULL, '2019-11-23 20:22:35');
  601. INSERT INTO `model` VALUES (719, 707, 0, '706,707', '02980004', '修改', 'cms:content:update', '', 0, 0, NULL, '2019-11-23 20:22:57');
  602. INSERT INTO `model` VALUES (720, 707, 0, '706,707', '02980001', '查看', 'cms:content:view', '', 0, 0, NULL, '2019-11-23 20:23:15');
  603. INSERT INTO `model` VALUES (721, 707, 0, '706,707', '721', '删除', 'cms:content:del', '', 0, 0, NULL, '2019-11-23 21:02:28');
  604. INSERT INTO `model` VALUES (722, 269, 0, '264,269', '722', '导入', 'mdiy:form:importJson', '', 0, 0, NULL, '2019-12-28 16:07:24');
  605. INSERT INTO `model` VALUES (1653, 708, 0, '706,708', '1320', '删除', 'cms:category:del', '', 0, 0, NULL, '2020-09-22 07:41:21');
  606. INSERT INTO `model` VALUES (1654, NULL, 0, NULL, '15777732147097291', '发送', NULL, 'icon-fasong', 0, 1, NULL, '2020-12-04 22:02:15');
  607. INSERT INTO `model` VALUES (1655, 1654, 0, '1654', '15777732147099397', '发送日志', 'msend/log/index.do', NULL, 0, 1, NULL, '2020-12-04 22:02:16');
  608. INSERT INTO `model` VALUES (1656, 1655, 0, '1654,1655', '15777732147096736', '查看', 'log:view', NULL, 0, 0, NULL, '2020-12-04 22:02:16');
  609. INSERT INTO `model` VALUES (1657, 1654, 0, '1654', '15777732147095432', '短信配置', 'msend/sms/form.do', NULL, 0, 1, NULL, '2020-12-04 22:02:16');
  610. INSERT INTO `model` VALUES (1658, 1657, 0, '1654,1657', '15777732147093121', '新增', 'sms:save', NULL, 0, 0, NULL, '2020-12-04 22:02:16');
  611. INSERT INTO `model` VALUES (1659, 1657, 0, '1654,1657', '160462902700077409', '修改', 'sms:update', NULL, 0, 0, NULL, '2020-12-04 22:02:16');
  612. INSERT INTO `model` VALUES (1660, 1654, 0, '1654', '15777732147094810', '邮件配置', 'msend/mail/form.do', NULL, 0, 1, NULL, '2020-12-04 22:02:16');
  613. INSERT INTO `model` VALUES (1661, 1660, 0, '1654,1660', '15777732147096294', '新增', 'mail:save', NULL, 0, 0, NULL, '2020-12-04 22:02:16');
  614. INSERT INTO `model` VALUES (1662, 1660, 0, '1654,1660', '16046290810006872', '修改', 'mail:update', NULL, 0, 0, NULL, '2020-12-04 22:02:16');
  615. INSERT INTO `model` VALUES (1663, 1654, 0, '1654', '15777732147099091', '消息模板', 'msend/template/index.do', NULL, 0, 1, NULL, '2020-12-04 22:02:16');
  616. INSERT INTO `model` VALUES (1664, 1663, 0, '1654,1663', '15777732147094910', '新增', 'sendTemplate:save', NULL, 0, 0, NULL, '2020-12-04 22:02:16');
  617. INSERT INTO `model` VALUES (1665, 1663, 0, '1654,1663', '15777732147093519', '删除', 'sendTemplate:del', NULL, 0, 0, NULL, '2020-12-04 22:02:16');
  618. INSERT INTO `model` VALUES (1666, 1663, 0, '1654,1663', '15777732147090556', '修改', 'sendTemplate:update', NULL, 0, 0, NULL, '2020-12-04 22:02:16');
  619. INSERT INTO `model` VALUES (1667, 1663, 0, '1654,1663', '15777732147096115', '查看', 'sendTemplate:view', NULL, 0, 0, NULL, '2020-12-04 22:02:16');
  620. COMMIT;
  621. -- ----------------------------
  622. -- Table structure for msend_log
  623. -- ----------------------------
  624. DROP TABLE IF EXISTS `msend_log`;
  625. CREATE TABLE `msend_log` (
  626. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id主键',
  627. `log_datetime` datetime DEFAULT NULL COMMENT '时间',
  628. `log_content` varchar(1000) DEFAULT NULL COMMENT '接收内容',
  629. `log_receive` varchar(100) DEFAULT NULL COMMENT '接收人',
  630. `log_type` int(1) DEFAULT NULL COMMENT '日志类型0邮件1短信',
  631. PRIMARY KEY (`id`) USING BTREE
  632. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='发送日志';
  633. -- ----------------------------
  634. -- Table structure for msend_mail
  635. -- ----------------------------
  636. DROP TABLE IF EXISTS `msend_mail`;
  637. CREATE TABLE `msend_mail` (
  638. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id主键',
  639. `mail_type` varchar(255) COLLATE utf8_bin DEFAULT NULL COMMENT '邮件类型',
  640. `mail_name` varchar(255) COLLATE utf8_bin DEFAULT NULL COMMENT '账号',
  641. `mail_password` varchar(255) COLLATE utf8_bin DEFAULT NULL,
  642. `mail_port` int(11) DEFAULT NULL COMMENT '端口号',
  643. `mail_server` varchar(255) COLLATE utf8_bin DEFAULT NULL COMMENT '服务器',
  644. `mail_form` varchar(255) COLLATE utf8_bin DEFAULT NULL,
  645. `mail_form_name` varchar(255) COLLATE utf8_bin DEFAULT NULL,
  646. `mail_enable` int(11) DEFAULT '0' COMMENT '0启用 1禁用',
  647. PRIMARY KEY (`id`) USING BTREE
  648. ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
  649. -- ----------------------------
  650. -- Table structure for msend_sms
  651. -- ----------------------------
  652. DROP TABLE IF EXISTS `msend_sms`;
  653. CREATE TABLE `msend_sms` (
  654. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id主键',
  655. `sms_type` varchar(150) COLLATE utf8_bin DEFAULT NULL COMMENT '短信接口类型',
  656. `sms_username` varchar(20) COLLATE utf8_bin DEFAULT NULL COMMENT '账号',
  657. `sms_password` varchar(60) COLLATE utf8_bin DEFAULT NULL COMMENT '密码',
  658. `sms_send_url` varchar(500) COLLATE utf8_bin DEFAULT NULL COMMENT '发送地址',
  659. `sms_account_url` varchar(500) COLLATE utf8_bin DEFAULT NULL,
  660. `sms_manager_url` varchar(120) COLLATE utf8_bin DEFAULT NULL COMMENT '短信平台后台管理地址',
  661. `sms_signature` varchar(20) COLLATE utf8_bin DEFAULT NULL COMMENT '签名',
  662. `sms_enable` int(11) DEFAULT '0' COMMENT '0启用 1禁用',
  663. PRIMARY KEY (`id`) USING BTREE
  664. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
  665. -- ----------------------------
  666. -- Table structure for msend_template
  667. -- ----------------------------
  668. DROP TABLE IF EXISTS `msend_template`;
  669. CREATE TABLE `msend_template` (
  670. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id主键',
  671. `model_id` int(11) DEFAULT '0' COMMENT '模块编号',
  672. `template_title` varchar(100) COLLATE utf8_bin NOT NULL COMMENT '标题',
  673. `template_mail` varchar(5000) COLLATE utf8_bin DEFAULT NULL,
  674. `template_sms` varchar(5000) COLLATE utf8_bin DEFAULT NULL,
  675. `template_code` varchar(50) COLLATE utf8_bin NOT NULL COMMENT '邮件模块代码',
  676. PRIMARY KEY (`id`) USING BTREE
  677. ) ENGINE=MyISAM AUTO_INCREMENT=26 DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='发送消息模板表';
  678. -- ----------------------------
  679. -- Table structure for people
  680. -- ----------------------------
  681. DROP TABLE IF EXISTS `people`;
  682. CREATE TABLE `people` (
  683. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id主键',
  684. `people_name` varchar(30) DEFAULT NULL COMMENT '账号',
  685. `people_password` varchar(50) DEFAULT NULL COMMENT '密码',
  686. `people_ip` varchar(100) DEFAULT NULL COMMENT '用户登录ip',
  687. `people_phone` varchar(30) DEFAULT NULL COMMENT '手机号码',
  688. `people_phonecheck` int(1) DEFAULT '0' COMMENT '1手机验证通过',
  689. `people_mail` varchar(120) DEFAULT NULL COMMENT '用户邮箱',
  690. `people_maillcheck` int(1) DEFAULT '0' COMMENT '1邮箱验证通过',
  691. `people_state` int(2) DEFAULT '0' COMMENT '用户状态',
  692. `people_code` varchar(15) DEFAULT NULL COMMENT '随机验证码',
  693. `people_codesenddate` datetime DEFAULT NULL COMMENT '发送验证码时间',
  694. `people_datetime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '注册时间',
  695. PRIMARY KEY (`id`) USING BTREE
  696. ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='户用基础表';
  697. -- ----------------------------
  698. -- Records of people
  699. -- ----------------------------
  700. BEGIN;
  701. INSERT INTO `people` VALUES (1, 'zs', '2be9bd7a3434f7038ca27d1918de58bd', NULL, '11111111111', 1, '11111111111@qq.com', 1, 1, NULL, NULL, '2020-11-20 22:42:09');
  702. INSERT INTO `people` VALUES (2, 'lisi', 'dc3a8f1670d65bea69b7b65048a0ac40', NULL, '', 0, '', 0, 0, NULL, NULL, '2020-11-21 13:24:00');
  703. COMMIT;
  704. -- ----------------------------
  705. -- Table structure for people_address
  706. -- ----------------------------
  707. DROP TABLE IF EXISTS `people_address`;
  708. CREATE TABLE `people_address` (
  709. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id主键',
  710. `PEOPLE_ID` int(11) NOT NULL COMMENT '对应用户基础信息拓展表的id',
  711. `PA_CONSIGNEE_NAME` varchar(30) DEFAULT NULL COMMENT '用户收货人姓名',
  712. `PA_PHONE` varchar(40) DEFAULT NULL COMMENT '收货人手机',
  713. `PA_MAIL` varchar(40) DEFAULT NULL COMMENT '收货人邮箱',
  714. `PA_ADDRESS` varchar(200) DEFAULT NULL COMMENT '收货人的详细收货地址',
  715. `PA_PROVINCE` varchar(10) DEFAULT NULL COMMENT '收货人所在的省',
  716. `PA_PROVINCE_ID` bigint(11) DEFAULT '0' COMMENT '省份编号',
  717. `PA_CITY` varchar(10) DEFAULT NULL COMMENT '收货人所在的市',
  718. `PA_CITY_ID` bigint(11) DEFAULT '0' COMMENT '城市编号',
  719. `PA_DISTRICT` varchar(10) DEFAULT NULL COMMENT '收货人所在区(县)',
  720. `PA_DISTRICT_ID` bigint(11) DEFAULT '0' COMMENT '区编号',
  721. `PA_STREET` varchar(255) DEFAULT NULL COMMENT '街道',
  722. `PA_STREET_ID` bigint(11) DEFAULT '0' COMMENT '街道编号',
  723. `PA_DEFAULT` int(1) DEFAULT '0' COMMENT '是否是收货人最终收货地址。1代表是,0代表不是,默认为0',
  724. PRIMARY KEY (`id`) USING BTREE,
  725. KEY `PA_PEOPLE_ID` (`PEOPLE_ID`) USING BTREE,
  726. CONSTRAINT `fk_pa_people_id` FOREIGN KEY (`PEOPLE_ID`) REFERENCES `people` (`id`) ON DELETE CASCADE
  727. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户地址';
  728. -- ----------------------------
  729. -- Table structure for people_user
  730. -- ----------------------------
  731. DROP TABLE IF EXISTS `people_user`;
  732. CREATE TABLE `people_user` (
  733. `people_id` int(11) NOT NULL COMMENT '用户id关联people表的(people_id)',
  734. `pu_real_name` varchar(50) DEFAULT NULL COMMENT '用户真实名称',
  735. `pu_address` varchar(200) DEFAULT NULL COMMENT '用户地址',
  736. `pu_level` varchar(200) DEFAULT NULL COMMENT '用户等级',
  737. `pu_level_name` varchar(200) DEFAULT NULL COMMENT '用户等级名称',
  738. `pu_icon` varchar(200) DEFAULT NULL COMMENT '用户头像图标地址',
  739. `pu_nickname` varchar(50) DEFAULT NULL COMMENT '用户昵称',
  740. `pu_sex` int(2) DEFAULT NULL COMMENT '用户性别(0.未知、1.男、2.女)',
  741. `pu_birthday` date DEFAULT NULL COMMENT '用户出生年月日',
  742. `pu_card` varchar(255) DEFAULT NULL COMMENT '身份证',
  743. `province_id` bigint(20) DEFAULT NULL COMMENT '省编号',
  744. `province_name` varchar(255) DEFAULT NULL COMMENT '省',
  745. `city_id` bigint(20) DEFAULT NULL COMMENT '城市编号',
  746. `city_name` varchar(255) DEFAULT NULL COMMENT '城市',
  747. `county_id` bigint(20) DEFAULT NULL COMMENT '县编号',
  748. `county_name` varchar(255) DEFAULT NULL COMMENT '县',
  749. PRIMARY KEY (`people_id`) USING BTREE,
  750. KEY `inx_people_id` (`people_id`) USING BTREE,
  751. CONSTRAINT `fk_pu_people_id` FOREIGN KEY (`people_id`) REFERENCES `people` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION
  752. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户基础信息表';
  753. -- ----------------------------
  754. -- Records of people_user
  755. -- ----------------------------
  756. BEGIN;
  757. INSERT INTO `people_user` VALUES (1, '1', '1', NULL, NULL, '/upload/1/people/user/1605936220556.jpg', '张三', 1, '2020-11-08', '1', NULL, NULL, NULL, NULL, NULL, NULL);
  758. INSERT INTO `people_user` VALUES (2, NULL, NULL, NULL, NULL, '/upload/1/people/user/1605936239726.jpg', '李四', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
  759. COMMIT;
  760. -- ----------------------------
  761. -- Table structure for role
  762. -- ----------------------------
  763. DROP TABLE IF EXISTS `role`;
  764. CREATE TABLE `role` (
  765. `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id主键',
  766. `manager_id` int(11) DEFAULT '0' COMMENT '角色管理员编号',
  767. `role_name` varchar(30) DEFAULT NULL COMMENT '角色名',
  768. PRIMARY KEY (`id`) USING BTREE,
  769. KEY `inx_role_manage_id` (`manager_id`) USING BTREE
  770. ) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8 COMMENT='角色表';
  771. -- ----------------------------
  772. -- Records of role
  773. -- ----------------------------
  774. BEGIN;
  775. INSERT INTO `role` VALUES (48, 57, 'msopen');
  776. COMMIT;
  777. -- ----------------------------
  778. -- Table structure for role_model
  779. -- ----------------------------
  780. DROP TABLE IF EXISTS `role_model`;
  781. CREATE TABLE `role_model` (
  782. `model_id` int(22) DEFAULT NULL COMMENT '模块编号',
  783. `role_id` int(22) DEFAULT NULL COMMENT '角色编号',
  784. KEY `fk_model_id` (`model_id`) USING BTREE,
  785. KEY `fk_role_id` (`role_id`) USING BTREE,
  786. CONSTRAINT `fk_rm_model_id` FOREIGN KEY (`model_id`) REFERENCES `model` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION,
  787. CONSTRAINT `fk_rm_role_id` FOREIGN KEY (`role_id`) REFERENCES `role` (`id`) ON DELETE CASCADE ON UPDATE NO ACTION
  788. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='角色模块关联表';
  789. -- ----------------------------
  790. -- Records of role_model
  791. -- ----------------------------
  792. BEGIN;
  793. INSERT INTO `role_model` VALUES (23, 48);
  794. INSERT INTO `role_model` VALUES (84, 48);
  795. INSERT INTO `role_model` VALUES (86, 48);
  796. INSERT INTO `role_model` VALUES (87, 48);
  797. INSERT INTO `role_model` VALUES (182, 48);
  798. INSERT INTO `role_model` VALUES (183, 48);
  799. INSERT INTO `role_model` VALUES (184, 48);
  800. INSERT INTO `role_model` VALUES (201, 48);
  801. INSERT INTO `role_model` VALUES (202, 48);
  802. INSERT INTO `role_model` VALUES (204, 48);
  803. INSERT INTO `role_model` VALUES (217, 48);
  804. INSERT INTO `role_model` VALUES (218, 48);
  805. INSERT INTO `role_model` VALUES (219, 48);
  806. INSERT INTO `role_model` VALUES (220, 48);
  807. INSERT INTO `role_model` VALUES (221, 48);
  808. INSERT INTO `role_model` VALUES (222, 48);
  809. INSERT INTO `role_model` VALUES (264, 48);
  810. INSERT INTO `role_model` VALUES (265, 48);
  811. INSERT INTO `role_model` VALUES (266, 48);
  812. INSERT INTO `role_model` VALUES (267, 48);
  813. INSERT INTO `role_model` VALUES (268, 48);
  814. INSERT INTO `role_model` VALUES (269, 48);
  815. INSERT INTO `role_model` VALUES (280, 48);
  816. INSERT INTO `role_model` VALUES (281, 48);
  817. INSERT INTO `role_model` VALUES (282, 48);
  818. INSERT INTO `role_model` VALUES (283, 48);
  819. INSERT INTO `role_model` VALUES (284, 48);
  820. INSERT INTO `role_model` VALUES (299, 48);
  821. INSERT INTO `role_model` VALUES (300, 48);
  822. INSERT INTO `role_model` VALUES (301, 48);
  823. INSERT INTO `role_model` VALUES (406, 48);
  824. INSERT INTO `role_model` VALUES (407, 48);
  825. INSERT INTO `role_model` VALUES (408, 48);
  826. INSERT INTO `role_model` VALUES (409, 48);
  827. INSERT INTO `role_model` VALUES (411, 48);
  828. INSERT INTO `role_model` VALUES (412, 48);
  829. INSERT INTO `role_model` VALUES (538, 48);
  830. INSERT INTO `role_model` VALUES (540, 48);
  831. INSERT INTO `role_model` VALUES (542, 48);
  832. INSERT INTO `role_model` VALUES (553, 48);
  833. INSERT INTO `role_model` VALUES (554, 48);
  834. INSERT INTO `role_model` VALUES (661, 48);
  835. INSERT INTO `role_model` VALUES (663, 48);
  836. INSERT INTO `role_model` VALUES (664, 48);
  837. INSERT INTO `role_model` VALUES (665, 48);
  838. INSERT INTO `role_model` VALUES (668, 48);
  839. INSERT INTO `role_model` VALUES (672, 48);
  840. INSERT INTO `role_model` VALUES (673, 48);
  841. INSERT INTO `role_model` VALUES (685, 48);
  842. INSERT INTO `role_model` VALUES (686, 48);
  843. INSERT INTO `role_model` VALUES (706, 48);
  844. INSERT INTO `role_model` VALUES (707, 48);
  845. INSERT INTO `role_model` VALUES (708, 48);
  846. INSERT INTO `role_model` VALUES (709, 48);
  847. INSERT INTO `role_model` VALUES (710, 48);
  848. INSERT INTO `role_model` VALUES (711, 48);
  849. INSERT INTO `role_model` VALUES (713, 48);
  850. INSERT INTO `role_model` VALUES (714, 48);
  851. INSERT INTO `role_model` VALUES (715, 48);
  852. INSERT INTO `role_model` VALUES (716, 48);
  853. INSERT INTO `role_model` VALUES (717, 48);
  854. INSERT INTO `role_model` VALUES (718, 48);
  855. INSERT INTO `role_model` VALUES (719, 48);
  856. INSERT INTO `role_model` VALUES (720, 48);
  857. INSERT INTO `role_model` VALUES (721, 48);
  858. INSERT INTO `role_model` VALUES (722, 48);
  859. INSERT INTO `role_model` VALUES (1653, 48);
  860. INSERT INTO `role_model` VALUES (1654, 48);
  861. INSERT INTO `role_model` VALUES (1655, 48);
  862. INSERT INTO `role_model` VALUES (1656, 48);
  863. INSERT INTO `role_model` VALUES (1657, 48);
  864. INSERT INTO `role_model` VALUES (1658, 48);
  865. INSERT INTO `role_model` VALUES (1659, 48);
  866. INSERT INTO `role_model` VALUES (1660, 48);
  867. INSERT INTO `role_model` VALUES (1661, 48);
  868. INSERT INTO `role_model` VALUES (1662, 48);
  869. INSERT INTO `role_model` VALUES (1663, 48);
  870. INSERT INTO `role_model` VALUES (1664, 48);
  871. INSERT INTO `role_model` VALUES (1665, 48);
  872. INSERT INTO `role_model` VALUES (1666, 48);
  873. INSERT INTO `role_model` VALUES (1667, 48);
  874. COMMIT;
  875. SET FOREIGN_KEY_CHECKS = 1;