carbon-platform-config.sql 117 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. /*
  2. Navicat Premium Data Transfer
  3. Source Server : 192.168.222.128_3306
  4. Source Server Type : MySQL
  5. Source Server Version : 50731
  6. Source Host : 192.168.222.128:3306
  7. Source Schema : carbon-platform-config
  8. Target Server Type : MySQL
  9. Target Server Version : 50731
  10. File Encoding : 65001
  11. Date: 18/11/2020 09:46:43
  12. */
  13. SET NAMES utf8mb4;
  14. SET FOREIGN_KEY_CHECKS = 0;
  15. -- ----------------------------
  16. -- Table structure for config_info
  17. -- ----------------------------
  18. DROP TABLE IF EXISTS `config_info`;
  19. CREATE TABLE `config_info` (
  20. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  21. `data_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'data_id',
  22. `group_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
  23. `content` longtext CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'content',
  24. `md5` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'md5',
  25. `gmt_create` datetime(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '创建时间',
  26. `gmt_modified` datetime(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '修改时间',
  27. `src_user` text CHARACTER SET utf8 COLLATE utf8_bin NULL COMMENT 'source user',
  28. `src_ip` varchar(20) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'source ip',
  29. `app_name` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
  30. `tenant_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT '' COMMENT '租户字段',
  31. `c_desc` varchar(256) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
  32. `c_use` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
  33. `effect` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
  34. `type` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
  35. `c_schema` text CHARACTER SET utf8 COLLATE utf8_bin NULL,
  36. PRIMARY KEY (`id`) USING BTREE,
  37. UNIQUE INDEX `uk_configinfo_datagrouptenant`(`data_id`, `group_id`, `tenant_id`) USING BTREE
  38. ) ENGINE = InnoDB AUTO_INCREMENT = 100 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = 'config_info' ROW_FORMAT = Dynamic;
  39. -- ----------------------------
  40. -- Records of config_info
  41. -- ----------------------------
  42. INSERT INTO `config_info` VALUES (54, 'forest-common.yml', 'DEFAULT_GROUP', 'secure:\r\n ignored:\r\n urls:\r\n - /swagger-ui.html\r\n - /swagger-resources/**\r\n - /swagger/**\r\n - /**/v2/api-docs\r\n - /**/*.js\r\n - /**/*.css\r\n - /**/*.png\r\n - /**/*.ico\r\n - /webjars/springfox-swagger-ui/**\r\n - /actuator/**\r\n - /druid/**\r\n - /home/**\r\n - /product/**\r\n - /wechat/h5/authorize\r\n - /wechat/h5/userInfo\r\n - /admin/login\r\n - /sso/login\r\n - /sso/getLoginCode\r\n - /sso/register\r\n - /sso/getAuthCode\r\n - /admin/register\r\n - /admin/info\r\n - /admin/logout\r\n - /minio/upload\r\n - /sso/loginPhone\r\n - /product/import\r\n - /big/**\r\n - /bigData/**\r\n - /first/upload\r\n - /doc.html\r\n - /sso/**\r\n - /wechat/**\r\n - /brand/**\r\n - /app/payResult\r\n\r\nqiniu:\r\n accessKey: FLWUJxiZY1_N-5d6J_jsdgbqyjVDUg86ghZHsaQW\r\n bucket: forestcloud\r\n path: http://fqn.hongweisoft.com/\r\n processName: \'null\'\r\n secretKey: So55w4fQ2dTQ6uMlWuUywmKG8ZTqVhWfr_3Ii7GI ', '69720b920d4f36307512d14e8db1f619', '2020-11-10 18:00:16', '2020-11-16 14:43:46', NULL, '0:0:0:0:0:0:0:1', '公共配置文件', '', '公共配置文件', 'null', 'null', 'yaml', 'null');
  43. INSERT INTO `config_info` VALUES (61, 'forest-portal.yml', 'DEFAULT_GROUP', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\n data:\r\n mongodb:\r\n host: 172.16.90.253\r\n port: 27017\r\n database: mall-port\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n\r\n rabbitmq:\r\n host: 172.16.90.64\r\n port: 5672\r\n virtual-host: /forest\r\n username: forest\r\n password: 123456\r\n publisher-confirms: true\r\nmyredis:\r\n address: redis://${spring.redis.host}:${spring.redis.port}\r\n passord: ${spring.redis.password}\r\n \r\nlogging:\r\n level:\r\n org.springframework.data.mongodb.core: debug\r\n com.hwrj.cloud.portal.mapper: debug\r\n com.hwrj.cloud.portal.dao: debug\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\nrabbitmq:\r\n queue:\r\n name:\r\n cancelOrder: cancelOrderQueue\r\nredis:\r\n database: forest\r\n key:\r\n authCode: \'ums:authCode\'\r\n telLoginCode: \'ums:authCode\'\r\n orderId: \'oms:orderId\'\r\n member: \'ums:member\'\r\n token: \'ums:token\'\r\n expire:\r\n authCode: 90\r\n authLoginCode: 240\r\n common: 86400\r\njwt:\r\n #JWT存储的请求头\r\n tokenHeader: Authorization\r\n #JWT加解密使用的密钥\r\n secret: forest-admin-secret\r\n #JWT的超期限时间(60*60*24*7)\r\n expiration: 604800\r\n #JWT负载中拿到开头\r\n tokenHead: Bearer\r\n \r\nforest:\r\n wx: \r\n password: forest123456\r\n\r\nsms:\r\n accessKeyId: LTAICB9TH0OAN3yJ\r\n accessKeySecret: lCuyL3MUQRLfoVw39W0NqWdVGoLV60\r\n signName: hywa\r\n \r\nwx:\r\n mp:\r\n aesKey: 123\r\n appId: wxbe90cc7c5233dd84\r\n secret: ec4a18ce1a7bcf17cf592c3d57cec68a\r\n token: 123\r\n url: http://wx.hw.hongweisoft.com/zddapi/forest-portal/wechat/h5/userInfo\r\n before: http://172.16.90.25:8080\r\n pay:\r\n appId: wxbe90cc7c5233dd84\r\n mchId: 1583849731\r\n mchKey: B5F5A628C91D869F4CA357D2BCD63006\r\n wxpayAppcallbackurl: http://wx.hw.hongweisoft.com/zddtest/forest-portal/app/payResult', 'eba5967a2962514f8268598adcec79c2', '2020-11-11 09:24:39', '2020-11-16 14:08:53', NULL, '0:0:0:0:0:0:0:1', 'forest-portal', '', 'null', 'null', 'null', 'yaml', 'null');
  44. INSERT INTO `config_info` VALUES (62, 'forest-gateway.yml', 'DEFAULT_GROUP', 'spring:\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\nmanagement:\r\n endpoints:\r\n web:\r\n exposure:\r\n include: \'*\'\r\n endpoint:\r\n health:\r\n show-details: always\r\n \r\njwt:\r\n tokenHeader: Authorization\r\n secret: forest-admin-secret\r\n expiration: 604800\r\n tokenHead: Bearer\r\n \r\nredis:\r\n database: forest\r\n key:\r\n admin: \'ums:admin\'\r\n token: \'ums:token\'\r\n resourceList: \'ums:resourceList\'\r\n expire:\r\n common: 86400', 'b8f6553b7c61c358a679ac28f96fd2ad', '2020-11-11 09:26:33', '2020-11-11 10:15:01', NULL, '0:0:0:0:0:0:0:1', 'forest-gateway', '', 'null', 'null', 'null', 'yaml', 'null');
  45. INSERT INTO `config_info` VALUES (65, 'forest-admin.yml', 'DEFAULT_GROUP', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n zipkin:\r\n base-url: http://localhost:9411\r\n locator:\r\n discovery:\r\n enabled: true\r\n sleuth:\r\n sampler:\r\n probability: 1.0\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:8095\r\n\r\nmanagement:\r\n endpoints:\r\n web:\r\n exposure:\r\n include: \'*\'\r\n endpoint:\r\n health:\r\n show-details: always\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\nlogging:\r\n level:\r\n root: info \r\n com.hwrj.cloud: debug\r\n\r\n sleuth:\r\n sampler:\r\n probability: 1.0\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\n\r\njwt:\r\n tokenHeader: Authorization\r\n secret: forest-admin-secret\r\n expiration: 604800\r\n tokenHead: Bearer\r\n\r\nredis:\r\n database: forest\r\n key:\r\n admin: \'ums:admin\'\r\n token: \'ums:token\'\r\n resourceList: \'ums:resourceList\'\r\n expire:\r\n common: 86400', '8894d85b8bc9cb7d39f1ce41d207934d', '2020-11-11 09:30:47', '2020-11-13 17:43:01', NULL, '0:0:0:0:0:0:0:1', 'forest-admin', '', 'null', 'null', 'null', 'yaml', 'null');
  46. -- ----------------------------
  47. -- Table structure for config_info_aggr
  48. -- ----------------------------
  49. DROP TABLE IF EXISTS `config_info_aggr`;
  50. CREATE TABLE `config_info_aggr` (
  51. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  52. `data_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'data_id',
  53. `group_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'group_id',
  54. `datum_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'datum_id',
  55. `content` longtext CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT '内容',
  56. `gmt_modified` datetime(0) NOT NULL COMMENT '修改时间',
  57. `app_name` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
  58. `tenant_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT '' COMMENT '租户字段',
  59. PRIMARY KEY (`id`) USING BTREE,
  60. UNIQUE INDEX `uk_configinfoaggr_datagrouptenantdatum`(`data_id`, `group_id`, `tenant_id`, `datum_id`) USING BTREE
  61. ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = '增加租户字段' ROW_FORMAT = Dynamic;
  62. -- ----------------------------
  63. -- Table structure for config_info_beta
  64. -- ----------------------------
  65. DROP TABLE IF EXISTS `config_info_beta`;
  66. CREATE TABLE `config_info_beta` (
  67. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  68. `data_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'data_id',
  69. `group_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'group_id',
  70. `app_name` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'app_name',
  71. `content` longtext CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'content',
  72. `beta_ips` varchar(1024) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'betaIps',
  73. `md5` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'md5',
  74. `gmt_create` datetime(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '创建时间',
  75. `gmt_modified` datetime(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '修改时间',
  76. `src_user` text CHARACTER SET utf8 COLLATE utf8_bin NULL COMMENT 'source user',
  77. `src_ip` varchar(20) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'source ip',
  78. `tenant_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT '' COMMENT '租户字段',
  79. PRIMARY KEY (`id`) USING BTREE,
  80. UNIQUE INDEX `uk_configinfobeta_datagrouptenant`(`data_id`, `group_id`, `tenant_id`) USING BTREE
  81. ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = 'config_info_beta' ROW_FORMAT = Dynamic;
  82. -- ----------------------------
  83. -- Table structure for config_info_tag
  84. -- ----------------------------
  85. DROP TABLE IF EXISTS `config_info_tag`;
  86. CREATE TABLE `config_info_tag` (
  87. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  88. `data_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'data_id',
  89. `group_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'group_id',
  90. `tenant_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT '' COMMENT 'tenant_id',
  91. `tag_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'tag_id',
  92. `app_name` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'app_name',
  93. `content` longtext CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'content',
  94. `md5` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'md5',
  95. `gmt_create` datetime(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '创建时间',
  96. `gmt_modified` datetime(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '修改时间',
  97. `src_user` text CHARACTER SET utf8 COLLATE utf8_bin NULL COMMENT 'source user',
  98. `src_ip` varchar(20) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'source ip',
  99. PRIMARY KEY (`id`) USING BTREE,
  100. UNIQUE INDEX `uk_configinfotag_datagrouptenanttag`(`data_id`, `group_id`, `tenant_id`, `tag_id`) USING BTREE
  101. ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = 'config_info_tag' ROW_FORMAT = Dynamic;
  102. -- ----------------------------
  103. -- Table structure for config_tags_relation
  104. -- ----------------------------
  105. DROP TABLE IF EXISTS `config_tags_relation`;
  106. CREATE TABLE `config_tags_relation` (
  107. `id` bigint(20) NOT NULL COMMENT 'id',
  108. `tag_name` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'tag_name',
  109. `tag_type` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'tag_type',
  110. `data_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'data_id',
  111. `group_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'group_id',
  112. `tenant_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT '' COMMENT 'tenant_id',
  113. `nid` bigint(20) NOT NULL AUTO_INCREMENT,
  114. PRIMARY KEY (`nid`) USING BTREE,
  115. UNIQUE INDEX `uk_configtagrelation_configidtag`(`id`, `tag_name`, `tag_type`) USING BTREE,
  116. INDEX `idx_tenant_id`(`tenant_id`) USING BTREE
  117. ) ENGINE = InnoDB AUTO_INCREMENT = 10 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = 'config_tag_relation' ROW_FORMAT = Dynamic;
  118. -- ----------------------------
  119. -- Records of config_tags_relation
  120. -- ----------------------------
  121. INSERT INTO `config_tags_relation` VALUES (65, '后台管理', NULL, 'forest-admin.yml', 'DEFAULT_GROUP', '', 9);
  122. -- ----------------------------
  123. -- Table structure for group_capacity
  124. -- ----------------------------
  125. DROP TABLE IF EXISTS `group_capacity`;
  126. CREATE TABLE `group_capacity` (
  127. `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键ID',
  128. `group_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT 'Group ID,空字符表示整个集群',
  129. `quota` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '配额,0表示使用默认值',
  130. `usage` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '使用量',
  131. `max_size` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '单个配置大小上限,单位为字节,0表示使用默认值',
  132. `max_aggr_count` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '聚合子配置最大个数,,0表示使用默认值',
  133. `max_aggr_size` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '单个聚合数据的子配置大小上限,单位为字节,0表示使用默认值',
  134. `max_history_count` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '最大变更历史数量',
  135. `gmt_create` datetime(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '创建时间',
  136. `gmt_modified` datetime(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '修改时间',
  137. PRIMARY KEY (`id`) USING BTREE,
  138. UNIQUE INDEX `uk_group_id`(`group_id`) USING BTREE
  139. ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = '集群、各Group容量信息表' ROW_FORMAT = Dynamic;
  140. -- ----------------------------
  141. -- Table structure for his_config_info
  142. -- ----------------------------
  143. DROP TABLE IF EXISTS `his_config_info`;
  144. CREATE TABLE `his_config_info` (
  145. `id` bigint(64) UNSIGNED NOT NULL,
  146. `nid` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  147. `data_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
  148. `group_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
  149. `app_name` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'app_name',
  150. `content` longtext CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
  151. `md5` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
  152. `gmt_create` datetime(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0),
  153. `gmt_modified` datetime(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0),
  154. `src_user` text CHARACTER SET utf8 COLLATE utf8_bin NULL,
  155. `src_ip` varchar(20) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
  156. `op_type` char(10) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
  157. `tenant_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT '' COMMENT '租户字段',
  158. PRIMARY KEY (`nid`) USING BTREE,
  159. INDEX `idx_gmt_create`(`gmt_create`) USING BTREE,
  160. INDEX `idx_gmt_modified`(`gmt_modified`) USING BTREE,
  161. INDEX `idx_did`(`data_id`) USING BTREE
  162. ) ENGINE = InnoDB AUTO_INCREMENT = 184 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = '多租户改造' ROW_FORMAT = Dynamic;
  163. -- ----------------------------
  164. -- Records of his_config_info
  165. -- ----------------------------
  166. INSERT INTO `his_config_info` VALUES (45, 124, 'forest-portal', 'DEFAULT_GROUP', 'forest-cloud', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\n data:\r\n mongodb:\r\n host: 172.16.90.253\r\n port: 27017\r\n database: mall-port\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n\r\n rabbitmq:\r\n host: 172.16.90.64\r\n port: 5672\r\n virtual-host: /forest\r\n username: forest\r\n password: 123456\r\n publisher-confirms: true\r\n\r\nlogging:\r\n level:\r\n org.springframework.data.mongodb.core: debug\r\n com.hwrj.cloud.portal.mapper: debug\r\n com.hwrj.cloud.portal.dao: debug\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\njwt:\r\n tokenHeader: Authorization\r\n secret: forest-admin-secret\r\n expiration: 604800\r\n tokenHead: Bearer\r\nsecure:\r\n ignored:\r\n urls:\r\n - /swagger-ui.html\r\n - /swagger-resources/**\r\n - /swagger/**\r\n - /**/v2/api-docs\r\n - /**/*.js\r\n - /**/*.css\r\n - /**/*.png\r\n - /**/*.ico\r\n - /webjars/springfox-swagger-ui/**\r\n - /druid/**\r\n - /actuator/**\r\n - /sso/**\r\n - /wechat/**\r\n - /home/**\r\n - /product/**\r\n - /brand/**\r\nrabbitmq:\r\n queue:\r\n name:\r\n cancelOrder: cancelOrderQueue\r\nredis:\r\n database: forest\r\n key:\r\n authCode: \'ums:authCode\'\r\n telLoginCode: \'ums:authCode\'\r\n orderId: \'oms:orderId\'\r\n member: \'ums:member\'\r\n token: \'ums:token\'\r\n expire:\r\n authCode: 90\r\n authLoginCode: 240\r\n common: 86400\r\n\r\nforest:\r\n wx: \r\n password: forest123456\r\n\r\nsms:\r\n accessKeyId: LTAICB9TH0OAN3yJ\r\n accessKeySecret: lCuyL3MUQRLfoVw39W0NqWdVGoLV60\r\n signName: 慧云网安\r\nwx:\r\n mp:\r\n aesKey: 123\r\n appId: wxbe90cc7c5233dd84\r\n secret: ec4a18ce1a7bcf17cf592c3d57cec68a\r\n token: 123\r\n url: http://wx.hw.hongweisoft.com/zddapi/forest-portal/wechat/h5/userInfo\r\n before: http://172.16.90.25:8080', '9d2a2c48014eeca56a666179df538f14', '2020-10-19 17:15:06', '2020-10-19 17:15:06', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  167. INSERT INTO `his_config_info` VALUES (45, 125, 'forest-portal', 'DEFAULT_GROUP', 'forest-cloud', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\n data:\r\n mongodb:\r\n host: 172.16.90.253\r\n port: 27017\r\n database: mall-port\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n\r\n rabbitmq:\r\n host: 172.16.90.64\r\n port: 5672\r\n virtual-host: /forest\r\n username: forest\r\n password: 123456\r\n publisher-confirms: true\r\n\r\nlogging:\r\n level:\r\n org.springframework.data.mongodb.core: debug\r\n com.hwrj.cloud.portal.mapper: debug\r\n com.hwrj.cloud.portal.dao: debug\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\njwt:\r\n tokenHeader: Authorization\r\n secret: forest-admin-secret\r\n expiration: 604800\r\n tokenHead: Bearer\r\nsecure:\r\n ignored:\r\n urls:\r\n - /swagger-ui.html\r\n - /swagger-resources/**\r\n - /swagger/**\r\n - /**/v2/api-docs\r\n - /**/*.js\r\n - /**/*.css\r\n - /**/*.png\r\n - /**/*.ico\r\n - /webjars/springfox-swagger-ui/**\r\n - /druid/**\r\n - /actuator/**\r\n - /sso/**\r\n - /wechat/**\r\n - /home/**\r\n - /product/**\r\n - /brand/**\r\nrabbitmq:\r\n queue:\r\n name:\r\n cancelOrder: cancelOrderQueue\r\nredis:\r\n database: forest\r\n key:\r\n authCode: \'ums:authCode\'\r\n telLoginCode: \'ums:authCode\'\r\n orderId: \'oms:orderId\'\r\n member: \'ums:member\'\r\n token: \'ums:token\'\r\n expire:\r\n authCode: 90\r\n authLoginCode: 240\r\n common: 86400\r\n\r\nforest:\r\n wx: \r\n password: forest123456\r\n\r\nsms:\r\n accessKeyId: LTAICB9TH0OAN3yJ\r\n accessKeySecret: lCuyL3MUQRLfoVw39W0NqWdVGoLV60\r\n signName: 慧云网安\r\nwx:\r\n mp:\r\n aesKey: 123\r\n appId: wxbe90cc7c5233dd84\r\n secret: ec4a18ce1a7bcf17cf592c3d57cec68a\r\n token: 123\r\n url: http://wx.hw.hongweisoft.com/zddapi/forest-portal/wechat/h5/userInfo\r\n before: http://172.16.90.25:8080', '9d2a2c48014eeca56a666179df538f14', '2020-10-19 17:16:51', '2020-10-19 17:16:51', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  168. INSERT INTO `his_config_info` VALUES (29, 126, 'forest-admin', 'DEFAULT_GROUP', 'forest-cloud', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n zipkin:\r\n base-url: http://localhost:9411\r\n locator:\r\n discovery:\r\n enabled: true\r\n sleuth:\r\n sampler:\r\n probability: 1.0\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:8095\r\n\r\nmanagement:\r\n endpoints:\r\n web:\r\n exposure:\r\n include: \'*\'\r\n endpoint:\r\n health:\r\n show-details: always\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\nlogging:\r\n level:\r\n root: info \r\n com.hwrj.cloud: debug\r\n\r\n sleuth:\r\n sampler:\r\n probability: 1.0\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\nsecure:\r\n ignored:\r\n urls:\r\n - /swagger-ui.html\r\n - /swagger-resources/**\r\n - /swagger/**\r\n - /**/v2/api-docs\r\n - /**/*.js\r\n - /**/*.css\r\n - /**/*.png\r\n - /**/*.ico\r\n - /webjars/springfox-swagger-ui/**\r\n - /actuator/**\r\n - /druid/**\r\n - /admin/login\r\n - /admin/register\r\n - /admin/info\r\n - /admin/logout\r\n - /minio/upload\r\n - /product/import\r\n - /big/**\r\n - /bigData/**\r\n - /first/upload\r\njwt:\r\n tokenHeader: Authorization\r\n secret: forest-admin-secret\r\n expiration: 604800\r\n tokenHead: Bearer\r\n\r\nredis:\r\n database: forest\r\n key:\r\n admin: \'ums:admin\'\r\n token: \'ums:token\'\r\n resourceList: \'ums:resourceList\'\r\n expire:\r\n common: 86400\r\nqiniu:\r\n accessKey: FLWUJxiZY1_N-5d6J_jsdgbqyjVDUg86ghZHsaQW\r\n bucket: forestcloud\r\n path: http://fqn.hongweisoft.com/\r\n processName: \'null\'\r\n secretKey: So55w4fQ2dTQ6uMlWuUywmKG8ZTqVhWfr_3Ii7GI\r\n', '85395571706970102053716e9a5d7053', '2020-10-27 10:38:57', '2020-10-27 10:38:57', NULL, '172.16.90.8', 'U', '');
  169. INSERT INTO `his_config_info` VALUES (45, 127, 'forest-portal', 'DEFAULT_GROUP', 'forest-cloud', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\n data:\r\n mongodb:\r\n host: 172.16.90.253\r\n port: 27017\r\n database: mall-port\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n\r\n rabbitmq:\r\n host: 172.16.90.64\r\n port: 5672\r\n virtual-host: /forest\r\n username: forest\r\n password: 123456\r\n publisher-confirms: true\r\n\r\nlogging:\r\n level:\r\n org.springframework.data.mongodb.core: debug\r\n com.hwrj.cloud.portal.mapper: debug\r\n com.hwrj.cloud.portal.dao: debug\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\njwt:\r\n tokenHeader: Authorization\r\n secret: forest-admin-secret\r\n expiration: 604800\r\n tokenHead: Bearer\r\nsecure:\r\n ignored:\r\n urls:\r\n - /swagger-ui.html\r\n - /swagger-resources/**\r\n - /swagger/**\r\n - /**/v2/api-docs\r\n - /**/*.js\r\n - /**/*.css\r\n - /**/*.png\r\n - /**/*.ico\r\n - /webjars/springfox-swagger-ui/**\r\n - /druid/**\r\n - /actuator/**\r\n - /sso/**\r\n - /wechat/**\r\n - /home/**\r\n - /product/**\r\n - /brand/**\r\nrabbitmq:\r\n queue:\r\n name:\r\n cancelOrder: cancelOrderQueue\r\nredis:\r\n database: forest\r\n key:\r\n authCode: \'ums:authCode\'\r\n telLoginCode: \'ums:authCode\'\r\n orderId: \'oms:orderId\'\r\n member: \'ums:member\'\r\n token: \'ums:token\'\r\n expire:\r\n authCode: 90\r\n authLoginCode: 240\r\n common: 86400\r\n\r\nforest:\r\n wx: \r\n password: forest123456\r\n\r\nsms:\r\n accessKeyId: LTAICB9TH0OAN3yJ\r\n accessKeySecret: lCuyL3MUQRLfoVw39W0NqWdVGoLV60\r\n signName: hywa\r\nwx:\r\n mp:\r\n aesKey: 123\r\n appId: wxbe90cc7c5233dd84\r\n secret: ec4a18ce1a7bcf17cf592c3d57cec68a\r\n token: 123\r\n url: http://wx.hw.hongweisoft.com/zddapi/forest-portal/wechat/h5/userInfo\r\n before: http://172.16.90.25:8080', '7eb1470c5e9a5aabe050c4f75163dc36', '2020-11-05 16:17:48', '2020-11-05 16:17:48', NULL, '172.16.90.8', 'U', '');
  170. INSERT INTO `his_config_info` VALUES (0, 128, 'forest-common', 'DEFAULT_GROUP', '', 'xx', '9336ebf25087d91c818ee6e9ec29f8c1', '2020-11-10 17:52:44', '2020-11-10 17:52:45', NULL, '0:0:0:0:0:0:0:1', 'I', '');
  171. INSERT INTO `his_config_info` VALUES (50, 129, 'forest-common', 'DEFAULT_GROUP', '', 'xx', '9336ebf25087d91c818ee6e9ec29f8c1', '2020-11-10 17:53:21', '2020-11-10 17:53:22', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  172. INSERT INTO `his_config_info` VALUES (45, 130, 'forest-portal', 'DEFAULT_GROUP', 'forest-cloud', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\n data:\r\n mongodb:\r\n host: 172.16.90.253\r\n port: 27017\r\n database: mall-port\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n\r\n rabbitmq:\r\n host: 172.16.90.64\r\n port: 5672\r\n virtual-host: /forest\r\n username: forest\r\n password: 123456\r\n publisher-confirms: true\r\n\r\nlogging:\r\n level:\r\n org.springframework.data.mongodb.core: debug\r\n com.hwrj.cloud.portal.mapper: debug\r\n com.hwrj.cloud.portal.dao: debug\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\njwt:\r\n tokenHeader: Authorization\r\n secret: forest-admin-secret\r\n expiration: 604800\r\n tokenHead: Bearer\r\nsecure:\r\n ignored:\r\n urls:\r\n - /swagger-ui.html\r\n - /swagger-resources/**\r\n - /swagger/**\r\n - /**/v2/api-docs\r\n - /**/*.js\r\n - /**/*.css\r\n - /**/*.png\r\n - /**/*.ico\r\n - /webjars/springfox-swagger-ui/**\r\n - /druid/**\r\n - /actuator/**\r\n - /sso/**\r\n - /wechat/**\r\n - /home/**\r\n - /product/**\r\n - /brand/**\r\nrabbitmq:\r\n queue:\r\n name:\r\n cancelOrder: cancelOrderQueue\r\nredis:\r\n database: forest\r\n key:\r\n authCode: \'ums:authCode\'\r\n telLoginCode: \'ums:authCode\'\r\n orderId: \'oms:orderId\'\r\n member: \'ums:member\'\r\n token: \'ums:token\'\r\n expire:\r\n authCode: 90\r\n authLoginCode: 240\r\n common: 86400\r\n\r\nforest:\r\n wx: \r\n password: forest123456\r\n\r\nsms:\r\n accessKeyId: LTAICB9TH0OAN3yJ\r\n accessKeySecret: lCuyL3MUQRLfoVw39W0NqWdVGoLV60\r\n signName: hywa\r\nwx:\r\n mp:\r\n aesKey: 123\r\n appId: wxbe90cc7c5233dd84\r\n secret: ec4a18ce1a7bcf17cf592c3d57cec68a\r\n token: 123\r\n url: http://wx.hw.hongweisoft.com/zddapi/forest-portal/wechat/h5/userInfo\r\n before: http://172.16.90.25:8080\r\nqiniu:\r\n accessKey: FLWUJxiZY1_N-5d6J_jsdgbqyjVDUg86ghZHsaQW\r\n bucket: forestcloud\r\n path: http://fqn.hongweisoft.com/\r\n processName: \'null\'\r\n secretKey: So55w4fQ2dTQ6uMlWuUywmKG8ZTqVhWfr_3Ii7GI ', '97aee9da71d0d2bce77dddc5dc4820b4', '2020-11-10 17:53:38', '2020-11-10 17:53:39', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  173. INSERT INTO `his_config_info` VALUES (50, 131, 'forest-common', 'DEFAULT_GROUP', '', 'qiniu:\r\n accessKey: FLWUJxiZY1_N-5d6J_jsdgbqyjVDUg86ghZHsaQW\r\n bucket: forestcloud\r\n path: http://fqn.hongweisoft.com/\r\n processName: \'null\'\r\n secretKey: So55w4fQ2dTQ6uMlWuUywmKG8ZTqVhWfr_3Ii7GI ', 'd85a9c73cfff84c6e8acea299d38e6d0', '2020-11-10 17:59:06', '2020-11-10 17:59:07', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  174. INSERT INTO `his_config_info` VALUES (0, 132, 'forest-common.yml', 'DEFAULT_GROUP', '', 'xx', '9336ebf25087d91c818ee6e9ec29f8c1', '2020-11-10 18:00:15', '2020-11-10 18:00:16', NULL, '0:0:0:0:0:0:0:1', 'I', '');
  175. INSERT INTO `his_config_info` VALUES (54, 133, 'forest-common.yml', 'DEFAULT_GROUP', '', 'xx', '9336ebf25087d91c818ee6e9ec29f8c1', '2020-11-10 18:00:32', '2020-11-10 18:00:33', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  176. INSERT INTO `his_config_info` VALUES (50, 134, 'forest-common', 'DEFAULT_GROUP', '', 'qiniu:\r\n accessKey: FLWUJxiZY1_N-5d6J_jsdgbqyjVDUg86ghZHsaQW\r\n bucket: forestcloud\r\n path: http://fqn.hongweisoft.com/\r\n processName: \'null\'\r\n secretKey: So55w4fQ2dTQ6uMlWuUywmKG8ZTqVhWfr_3Ii7GI ', 'd85a9c73cfff84c6e8acea299d38e6d0', '2020-11-10 18:00:37', '2020-11-10 18:00:38', NULL, '0:0:0:0:0:0:0:1', 'D', '');
  177. INSERT INTO `his_config_info` VALUES (45, 135, 'forest-portal', 'DEFAULT_GROUP', 'forest-cloud', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\n data:\r\n mongodb:\r\n host: 172.16.90.253\r\n port: 27017\r\n database: mall-port\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n\r\n rabbitmq:\r\n host: 172.16.90.64\r\n port: 5672\r\n virtual-host: /forest\r\n username: forest\r\n password: 123456\r\n publisher-confirms: true\r\n\r\nlogging:\r\n level:\r\n org.springframework.data.mongodb.core: debug\r\n com.hwrj.cloud.portal.mapper: debug\r\n com.hwrj.cloud.portal.dao: debug\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\njwt:\r\n tokenHeader: Authorization\r\n secret: forest-admin-secret\r\n expiration: 604800\r\n tokenHead: Bearer\r\nsecure:\r\n ignored:\r\n urls:\r\n - /swagger-ui.html\r\n - /swagger-resources/**\r\n - /swagger/**\r\n - /**/v2/api-docs\r\n - /**/*.js\r\n - /**/*.css\r\n - /**/*.png\r\n - /**/*.ico\r\n - /webjars/springfox-swagger-ui/**\r\n - /druid/**\r\n - /actuator/**\r\n - /sso/**\r\n - /wechat/**\r\n - /home/**\r\n - /product/**\r\n - /brand/**\r\nrabbitmq:\r\n queue:\r\n name:\r\n cancelOrder: cancelOrderQueue\r\nredis:\r\n database: forest\r\n key:\r\n authCode: \'ums:authCode\'\r\n telLoginCode: \'ums:authCode\'\r\n orderId: \'oms:orderId\'\r\n member: \'ums:member\'\r\n token: \'ums:token\'\r\n expire:\r\n authCode: 90\r\n authLoginCode: 240\r\n common: 86400\r\n\r\nforest:\r\n wx: \r\n password: forest123456\r\n\r\nsms:\r\n accessKeyId: LTAICB9TH0OAN3yJ\r\n accessKeySecret: lCuyL3MUQRLfoVw39W0NqWdVGoLV60\r\n signName: hywa\r\nwx:\r\n mp:\r\n aesKey: 123\r\n appId: wxbe90cc7c5233dd84\r\n secret: ec4a18ce1a7bcf17cf592c3d57cec68a\r\n token: 123\r\n url: http://wx.hw.hongweisoft.com/zddapi/forest-portal/wechat/h5/userInfo\r\n before: http://172.16.90.25:8080 ', '2592613333fc684c08dbdacbe8d19127', '2020-11-10 18:04:43', '2020-11-10 18:04:44', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  178. INSERT INTO `his_config_info` VALUES (54, 136, 'forest-common.yml', 'DEFAULT_GROUP', '', 'qiniu:\r\n accessKey: FLWUJxiZY1_N-5d6J_jsdgbqyjVDUg86ghZHsaQW\r\n bucket: forestcloud\r\n path: http://fqn.hongweisoft.com/\r\n processName: \'null\'\r\n secretKey: So55w4fQ2dTQ6uMlWuUywmKG8ZTqVhWfr_3Ii7GI ', 'd85a9c73cfff84c6e8acea299d38e6d0', '2020-11-10 18:05:12', '2020-11-10 18:05:13', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  179. INSERT INTO `his_config_info` VALUES (54, 137, 'forest-common.yml', 'DEFAULT_GROUP', '', 'secure:\r\n ignored:\r\n urls:\r\n - /swagger-ui.html\r\n - /swagger-resources/**\r\n - /swagger/**\r\n - /**/v2/api-docs\r\n - /**/*.js\r\n - /**/*.css\r\n - /**/*.png\r\n - /**/*.ico\r\n - /webjars/springfox-swagger-ui/**\r\n - /druid/**\r\n - /actuator/**\r\n - /sso/**\r\n - /wechat/**\r\n - /home/**\r\n - /product/**\r\n - /brand/**\r\njwt:\r\n tokenHeader: Authorization\r\n secret: forest-admin-secret\r\n expiration: 604800\r\n tokenHead: Bearer \r\nqiniu:\r\n accessKey: FLWUJxiZY1_N-5d6J_jsdgbqyjVDUg86ghZHsaQW\r\n bucket: forestcloud\r\n path: http://fqn.hongweisoft.com/\r\n processName: \'null\'\r\n secretKey: So55w4fQ2dTQ6uMlWuUywmKG8ZTqVhWfr_3Ii7GI ', 'e872dfc3c38d030d3bb674cb2d9f62de', '2020-11-11 09:11:26', '2020-11-11 09:11:29', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  180. INSERT INTO `his_config_info` VALUES (45, 138, 'forest-portal', 'DEFAULT_GROUP', 'forest-cloud', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\n data:\r\n mongodb:\r\n host: 172.16.90.253\r\n port: 27017\r\n database: mall-port\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n\r\n rabbitmq:\r\n host: 172.16.90.64\r\n port: 5672\r\n virtual-host: /forest\r\n username: forest\r\n password: 123456\r\n publisher-confirms: true\r\n\r\nlogging:\r\n level:\r\n org.springframework.data.mongodb.core: debug\r\n com.hwrj.cloud.portal.mapper: debug\r\n com.hwrj.cloud.portal.dao: debug\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\nrabbitmq:\r\n queue:\r\n name:\r\n cancelOrder: cancelOrderQueue\r\nredis:\r\n database: forest\r\n key:\r\n authCode: \'ums:authCode\'\r\n telLoginCode: \'ums:authCode\'\r\n orderId: \'oms:orderId\'\r\n member: \'ums:member\'\r\n token: \'ums:token\'\r\n expire:\r\n authCode: 90\r\n authLoginCode: 240\r\n common: 86400\r\n\r\nforest:\r\n wx: \r\n password: forest123456\r\n\r\nsms:\r\n accessKeyId: LTAICB9TH0OAN3yJ\r\n accessKeySecret: lCuyL3MUQRLfoVw39W0NqWdVGoLV60\r\n signName: hywa\r\nwx:\r\n mp:\r\n aesKey: 123\r\n appId: wxbe90cc7c5233dd84\r\n secret: ec4a18ce1a7bcf17cf592c3d57cec68a\r\n token: 123\r\n url: http://wx.hw.hongweisoft.com/zddapi/forest-portal/wechat/h5/userInfo\r\n before: http://172.16.90.25:8080 ', '97913f07f8731b3404d0da55f2b01f81', '2020-11-11 09:12:34', '2020-11-11 09:12:36', NULL, '0:0:0:0:0:0:0:1', 'D', '');
  181. INSERT INTO `his_config_info` VALUES (0, 139, 'forest-portal.yml', 'DEFAULT_GROUP', '', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\n data:\r\n mongodb:\r\n host: 172.16.90.253\r\n port: 27017\r\n database: mall-port\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n\r\n rabbitmq:\r\n host: 172.16.90.64\r\n port: 5672\r\n virtual-host: /forest\r\n username: forest\r\n password: 123456\r\n publisher-confirms: true\r\n\r\nlogging:\r\n level:\r\n org.springframework.data.mongodb.core: debug\r\n com.hwrj.cloud.portal.mapper: debug\r\n com.hwrj.cloud.portal.dao: debug\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\nrabbitmq:\r\n queue:\r\n name:\r\n cancelOrder: cancelOrderQueue\r\nredis:\r\n database: forest\r\n key:\r\n authCode: \'ums:authCode\'\r\n telLoginCode: \'ums:authCode\'\r\n orderId: \'oms:orderId\'\r\n member: \'ums:member\'\r\n token: \'ums:token\'\r\n expire:\r\n authCode: 90\r\n authLoginCode: 240\r\n common: 86400\r\n\r\nforest:\r\n wx: \r\n password: forest123456\r\n\r\nsms:\r\n accessKeyId: LTAICB9TH0OAN3yJ\r\n accessKeySecret: lCuyL3MUQRLfoVw39W0NqWdVGoLV60\r\n signName: hywa\r\nwx:\r\n mp:\r\n aesKey: 123\r\n appId: wxbe90cc7c5233dd84\r\n secret: ec4a18ce1a7bcf17cf592c3d57cec68a\r\n token: 123\r\n url: http://wx.hw.hongweisoft.com/zddapi/forest-portal/wechat/h5/userInfo\r\n before: http://172.16.90.25:8080 ', '97913f07f8731b3404d0da55f2b01f81', '2020-11-11 09:13:45', '2020-11-11 09:13:48', NULL, '0:0:0:0:0:0:0:1', 'I', '');
  182. INSERT INTO `his_config_info` VALUES (59, 140, 'forest-portal.yml', 'DEFAULT_GROUP', '', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\n data:\r\n mongodb:\r\n host: 172.16.90.253\r\n port: 27017\r\n database: mall-port\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n\r\n rabbitmq:\r\n host: 172.16.90.64\r\n port: 5672\r\n virtual-host: /forest\r\n username: forest\r\n password: 123456\r\n publisher-confirms: true\r\n\r\nlogging:\r\n level:\r\n org.springframework.data.mongodb.core: debug\r\n com.hwrj.cloud.portal.mapper: debug\r\n com.hwrj.cloud.portal.dao: debug\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\nrabbitmq:\r\n queue:\r\n name:\r\n cancelOrder: cancelOrderQueue\r\nredis:\r\n database: forest\r\n key:\r\n authCode: \'ums:authCode\'\r\n telLoginCode: \'ums:authCode\'\r\n orderId: \'oms:orderId\'\r\n member: \'ums:member\'\r\n token: \'ums:token\'\r\n expire:\r\n authCode: 90\r\n authLoginCode: 240\r\n common: 86400\r\n\r\nforest:\r\n wx: \r\n password: forest123456\r\n\r\nsms:\r\n accessKeyId: LTAICB9TH0OAN3yJ\r\n accessKeySecret: lCuyL3MUQRLfoVw39W0NqWdVGoLV60\r\n signName: hywa\r\nwx:\r\n mp:\r\n aesKey: 123\r\n appId: wxbe90cc7c5233dd84\r\n secret: ec4a18ce1a7bcf17cf592c3d57cec68a\r\n token: 123\r\n url: http://wx.hw.hongweisoft.com/zddapi/forest-portal/wechat/h5/userInfo\r\n before: http://172.16.90.25:8080 ', '97913f07f8731b3404d0da55f2b01f81', '2020-11-11 09:21:27', '2020-11-11 09:21:29', NULL, '0:0:0:0:0:0:0:1', 'D', '');
  183. INSERT INTO `his_config_info` VALUES (0, 141, 'forest-portal', 'DEFAULT_GROUP', 'forest-portal', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\n data:\r\n mongodb:\r\n host: 172.16.90.253\r\n port: 27017\r\n database: mall-port\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n\r\n rabbitmq:\r\n host: 172.16.90.64\r\n port: 5672\r\n virtual-host: /forest\r\n username: forest\r\n password: 123456\r\n publisher-confirms: true\r\n\r\nlogging:\r\n level:\r\n org.springframework.data.mongodb.core: debug\r\n com.hwrj.cloud.portal.mapper: debug\r\n com.hwrj.cloud.portal.dao: debug\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\nrabbitmq:\r\n queue:\r\n name:\r\n cancelOrder: cancelOrderQueue\r\nredis:\r\n database: forest\r\n key:\r\n authCode: \'ums:authCode\'\r\n telLoginCode: \'ums:authCode\'\r\n orderId: \'oms:orderId\'\r\n member: \'ums:member\'\r\n token: \'ums:token\'\r\n expire:\r\n authCode: 90\r\n authLoginCode: 240\r\n common: 86400\r\n\r\nforest:\r\n wx: \r\n password: forest123456\r\n\r\nsms:\r\n accessKeyId: LTAICB9TH0OAN3yJ\r\n accessKeySecret: lCuyL3MUQRLfoVw39W0NqWdVGoLV60\r\n signName: hywa\r\nwx:\r\n mp:\r\n aesKey: 123\r\n appId: wxbe90cc7c5233dd84\r\n secret: ec4a18ce1a7bcf17cf592c3d57cec68a\r\n token: 123\r\n url: http://wx.hw.hongweisoft.com/zddapi/forest-portal/wechat/h5/userInfo\r\n before: http://172.16.90.25:8080 ', '97913f07f8731b3404d0da55f2b01f81', '2020-11-11 09:22:55', '2020-11-11 09:22:58', NULL, '0:0:0:0:0:0:0:1', 'I', '');
  184. INSERT INTO `his_config_info` VALUES (60, 142, 'forest-portal', 'DEFAULT_GROUP', 'forest-portal', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\n data:\r\n mongodb:\r\n host: 172.16.90.253\r\n port: 27017\r\n database: mall-port\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n\r\n rabbitmq:\r\n host: 172.16.90.64\r\n port: 5672\r\n virtual-host: /forest\r\n username: forest\r\n password: 123456\r\n publisher-confirms: true\r\n\r\nlogging:\r\n level:\r\n org.springframework.data.mongodb.core: debug\r\n com.hwrj.cloud.portal.mapper: debug\r\n com.hwrj.cloud.portal.dao: debug\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\nrabbitmq:\r\n queue:\r\n name:\r\n cancelOrder: cancelOrderQueue\r\nredis:\r\n database: forest\r\n key:\r\n authCode: \'ums:authCode\'\r\n telLoginCode: \'ums:authCode\'\r\n orderId: \'oms:orderId\'\r\n member: \'ums:member\'\r\n token: \'ums:token\'\r\n expire:\r\n authCode: 90\r\n authLoginCode: 240\r\n common: 86400\r\n\r\nforest:\r\n wx: \r\n password: forest123456\r\n\r\nsms:\r\n accessKeyId: LTAICB9TH0OAN3yJ\r\n accessKeySecret: lCuyL3MUQRLfoVw39W0NqWdVGoLV60\r\n signName: hywa\r\nwx:\r\n mp:\r\n aesKey: 123\r\n appId: wxbe90cc7c5233dd84\r\n secret: ec4a18ce1a7bcf17cf592c3d57cec68a\r\n token: 123\r\n url: http://wx.hw.hongweisoft.com/zddapi/forest-portal/wechat/h5/userInfo\r\n before: http://172.16.90.25:8080 ', '97913f07f8731b3404d0da55f2b01f81', '2020-11-11 09:23:46', '2020-11-11 09:23:48', NULL, '0:0:0:0:0:0:0:1', 'D', '');
  185. INSERT INTO `his_config_info` VALUES (0, 143, 'forest-portal.yml', 'DEFAULT_GROUP', 'forest-portal', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\n data:\r\n mongodb:\r\n host: 172.16.90.253\r\n port: 27017\r\n database: mall-port\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n\r\n rabbitmq:\r\n host: 172.16.90.64\r\n port: 5672\r\n virtual-host: /forest\r\n username: forest\r\n password: 123456\r\n publisher-confirms: true\r\n\r\nlogging:\r\n level:\r\n org.springframework.data.mongodb.core: debug\r\n com.hwrj.cloud.portal.mapper: debug\r\n com.hwrj.cloud.portal.dao: debug\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\nrabbitmq:\r\n queue:\r\n name:\r\n cancelOrder: cancelOrderQueue\r\nredis:\r\n database: forest\r\n key:\r\n authCode: \'ums:authCode\'\r\n telLoginCode: \'ums:authCode\'\r\n orderId: \'oms:orderId\'\r\n member: \'ums:member\'\r\n token: \'ums:token\'\r\n expire:\r\n authCode: 90\r\n authLoginCode: 240\r\n common: 86400\r\n\r\nforest:\r\n wx: \r\n password: forest123456\r\n\r\nsms:\r\n accessKeyId: LTAICB9TH0OAN3yJ\r\n accessKeySecret: lCuyL3MUQRLfoVw39W0NqWdVGoLV60\r\n signName: hywa\r\nwx:\r\n mp:\r\n aesKey: 123\r\n appId: wxbe90cc7c5233dd84\r\n secret: ec4a18ce1a7bcf17cf592c3d57cec68a\r\n token: 123\r\n url: http://wx.hw.hongweisoft.com/zddapi/forest-portal/wechat/h5/userInfo\r\n before: http://172.16.90.25:8080 ', '97913f07f8731b3404d0da55f2b01f81', '2020-11-11 09:24:37', '2020-11-11 09:24:39', NULL, '0:0:0:0:0:0:0:1', 'I', '');
  186. INSERT INTO `his_config_info` VALUES (0, 144, 'forest-gateway.yml', 'DEFAULT_GROUP', 'forest-gateway', 'spring:\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\nmanagement:\r\n endpoints:\r\n web:\r\n exposure:\r\n include: \'*\'\r\n endpoint:\r\n health:\r\n show-details: always\r\nsecure:\r\n ignored:\r\n urls:\r\n - /swagger-ui.html\r\n - /swagger-resources/**\r\n - /swagger/**\r\n - /**/v2/api-docs\r\n - /**/*.js\r\n - /**/*.css\r\n - /**/*.png\r\n - /**/*.ico\r\n - /webjars/springfox-swagger-ui/**\r\n - /actuator/**\r\n - /druid/**\r\n - /home/**\r\n - /product/**\r\n - /wechat/h5/authorize\r\n - /wechat/h5/userInfo\r\n - /admin/login\r\n - /sso/login\r\n - /sso/getLoginCode\r\n - /sso/register\r\n - /sso/getAuthCode\r\n - /admin/register\r\n - /admin/info\r\n - /admin/logout\r\n - /minio/upload\r\n - /sso/loginPhone\r\n - /product/import\r\n - /big/**\r\n - /bigData/**\r\n - /first/upload\r\njwt:\r\n tokenHeader: Authorization\r\n secret: forest-admin-secret\r\n expiration: 604800\r\n tokenHead: Bearer\r\nredis:\r\n database: forest\r\n key:\r\n admin: \'ums:admin\'\r\n token: \'ums:token\'\r\n resourceList: \'ums:resourceList\'\r\n expire:\r\n common: 86400', 'acd5e5b0051d92309af88780d816a395', '2020-11-11 09:26:30', '2020-11-11 09:26:33', NULL, '0:0:0:0:0:0:0:1', 'I', '');
  187. INSERT INTO `his_config_info` VALUES (32, 145, 'forest-gateway', 'DEFAULT_GROUP', 'forest-cloud', 'spring:\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\nmanagement:\r\n endpoints:\r\n web:\r\n exposure:\r\n include: \'*\'\r\n endpoint:\r\n health:\r\n show-details: always\r\nsecure:\r\n ignored:\r\n urls:\r\n - /swagger-ui.html\r\n - /swagger-resources/**\r\n - /swagger/**\r\n - /**/v2/api-docs\r\n - /**/*.js\r\n - /**/*.css\r\n - /**/*.png\r\n - /**/*.ico\r\n - /webjars/springfox-swagger-ui/**\r\n - /actuator/**\r\n - /druid/**\r\n - /home/**\r\n - /product/**\r\n - /wechat/h5/authorize\r\n - /wechat/h5/userInfo\r\n - /admin/login\r\n - /sso/login\r\n - /sso/getLoginCode\r\n - /sso/register\r\n - /sso/getAuthCode\r\n - /admin/register\r\n - /admin/info\r\n - /admin/logout\r\n - /minio/upload\r\n - /sso/loginPhone\r\n - /product/import\r\n - /big/**\r\n - /bigData/**\r\n - /first/upload\r\njwt:\r\n tokenHeader: Authorization\r\n secret: forest-admin-secret\r\n expiration: 604800\r\n tokenHead: Bearer\r\nredis:\r\n database: forest\r\n key:\r\n admin: \'ums:admin\'\r\n token: \'ums:token\'\r\n resourceList: \'ums:resourceList\'\r\n expire:\r\n common: 86400', 'acd5e5b0051d92309af88780d816a395', '2020-11-11 09:26:41', '2020-11-11 09:26:43', NULL, '0:0:0:0:0:0:0:1', 'D', '');
  188. INSERT INTO `his_config_info` VALUES (62, 146, 'forest-gateway.yml', 'DEFAULT_GROUP', 'forest-gateway', 'spring:\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\nmanagement:\r\n endpoints:\r\n web:\r\n exposure:\r\n include: \'*\'\r\n endpoint:\r\n health:\r\n show-details: always\r\nsecure:\r\n ignored:\r\n urls:\r\n - /swagger-ui.html\r\n - /swagger-resources/**\r\n - /swagger/**\r\n - /**/v2/api-docs\r\n - /**/*.js\r\n - /**/*.css\r\n - /**/*.png\r\n - /**/*.ico\r\n - /webjars/springfox-swagger-ui/**\r\n - /actuator/**\r\n - /druid/**\r\n - /home/**\r\n - /product/**\r\n - /wechat/h5/authorize\r\n - /wechat/h5/userInfo\r\n - /admin/login\r\n - /sso/login\r\n - /sso/getLoginCode\r\n - /sso/register\r\n - /sso/getAuthCode\r\n - /admin/register\r\n - /admin/info\r\n - /admin/logout\r\n - /minio/upload\r\n - /sso/loginPhone\r\n - /product/import\r\n - /big/**\r\n - /bigData/**\r\n - /first/upload\r\njwt:\r\n tokenHeader: Authorization\r\n secret: forest-admin-secret\r\n expiration: 604800\r\n tokenHead: Bearer\r\nredis:\r\n database: forest\r\n key:\r\n admin: \'ums:admin\'\r\n token: \'ums:token\'\r\n resourceList: \'ums:resourceList\'\r\n expire:\r\n common: 86400', 'acd5e5b0051d92309af88780d816a395', '2020-11-11 09:27:58', '2020-11-11 09:28:01', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  189. INSERT INTO `his_config_info` VALUES (54, 147, 'forest-common.yml', 'DEFAULT_GROUP', '', 'secure:\r\n ignored:\r\n urls:\r\n - /swagger-ui.html\r\n - /swagger-resources/**\r\n - /swagger/**\r\n - /**/v2/api-docs\r\n - /**/*.js\r\n - /**/*.css\r\n - /**/*.png\r\n - /**/*.ico\r\n - /webjars/springfox-swagger-ui/**\r\n - /druid/**\r\n - /actuator/**\r\n - /sso/**\r\n - /wechat/**\r\n - /home/**\r\n - /product/**\r\n - /brand/**\r\njwt:\r\n tokenHeader: Authorization\r\n secret: forest-admin-secret\r\n expiration: 604800\r\n tokenHead: Bearer \r\nqiniu:\r\n accessKey: FLWUJxiZY1_N-5d6J_jsdgbqyjVDUg86ghZHsaQW\r\n bucket: forestcloud\r\n path: http://fqn.hongweisoft.com/\r\n processName: \'null\'\r\n secretKey: So55w4fQ2dTQ6uMlWuUywmKG8ZTqVhWfr_3Ii7GI ', 'e872dfc3c38d030d3bb674cb2d9f62de', '2020-11-11 09:28:48', '2020-11-11 09:28:51', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  190. INSERT INTO `his_config_info` VALUES (0, 148, 'forest-admin.yml', 'DEFAULT_GROUP', 'forest-admin', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n zipkin:\r\n base-url: http://localhost:9411\r\n locator:\r\n discovery:\r\n enabled: true\r\n sleuth:\r\n sampler:\r\n probability: 1.0\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:8095\r\n\r\nmanagement:\r\n endpoints:\r\n web:\r\n exposure:\r\n include: \'*\'\r\n endpoint:\r\n health:\r\n show-details: always\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\nlogging:\r\n level:\r\n root: info \r\n com.hwrj.cloud: debug\r\n\r\n sleuth:\r\n sampler:\r\n probability: 1.0\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091', '9fb35432e5cc822ec2d23700eb026bc6', '2020-11-11 09:30:45', '2020-11-11 09:30:47', NULL, '0:0:0:0:0:0:0:1', 'I', '');
  191. INSERT INTO `his_config_info` VALUES (29, 149, 'forest-admin', 'DEFAULT_GROUP', 'forest-cloud', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n zipkin:\r\n base-url: http://localhost:9411\r\n locator:\r\n discovery:\r\n enabled: true\r\n sleuth:\r\n sampler:\r\n probability: 1.0\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:8095\r\n\r\nmanagement:\r\n endpoints:\r\n web:\r\n exposure:\r\n include: \'*\'\r\n endpoint:\r\n health:\r\n show-details: always\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\nlogging:\r\n level:\r\n root: info \r\n com.hwrj.cloud: debug\r\n\r\n sleuth:\r\n sampler:\r\n probability: 1.0\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\nsecure:\r\n ignored:\r\n urls:\r\n - /swagger-ui.html\r\n - /swagger-resources/**\r\n - /swagger/**\r\n - /**/v2/api-docs\r\n - /**/*.js\r\n - /**/*.css\r\n - /**/*.png\r\n - /**/*.ico\r\n - /webjars/springfox-swagger-ui/**\r\n - /actuator/**\r\n - /druid/**\r\n - /admin/login\r\n - /admin/register\r\n - /admin/info\r\n - /admin/logout\r\n - /minio/upload\r\n - /product/import\r\n - /big/**\r\n - /bigData/**\r\n - /first/upload\r\n - /doc.html\r\njwt:\r\n tokenHeader: Authorization\r\n secret: forest-admin-secret\r\n expiration: 604800\r\n tokenHead: Bearer\r\n\r\nredis:\r\n database: forest\r\n key:\r\n admin: \'ums:admin\'\r\n token: \'ums:token\'\r\n resourceList: \'ums:resourceList\'\r\n expire:\r\n common: 86400\r\nqiniu:\r\n accessKey: FLWUJxiZY1_N-5d6J_jsdgbqyjVDUg86ghZHsaQW\r\n bucket: forestcloud\r\n path: http://fqn.hongweisoft.com/\r\n processName: \'null\'\r\n secretKey: So55w4fQ2dTQ6uMlWuUywmKG8ZTqVhWfr_3Ii7GI\r\n', 'fad9b34ecc694d160220ec93eeadc3e8', '2020-11-11 09:31:01', '2020-11-11 09:31:04', NULL, '0:0:0:0:0:0:0:1', 'D', '');
  192. INSERT INTO `his_config_info` VALUES (54, 150, 'forest-common.yml', 'DEFAULT_GROUP', '', 'secure:\r\n ignored:\r\n urls:\r\n - /swagger-ui.html\r\n - /swagger-resources/**\r\n - /swagger/**\r\n - /**/v2/api-docs\r\n - /**/*.js\r\n - /**/*.css\r\n - /**/*.png\r\n - /**/*.ico\r\n - /webjars/springfox-swagger-ui/**\r\n - /druid/**\r\n - /actuator/**\r\n - /sso/**\r\n - /wechat/**\r\n - /home/**\r\n - /product/**\r\n - /brand/**\r\n\r\njwt:\r\n tokenHeader: Authorization\r\n secret: forest-admin-secret\r\n expiration: 604800\r\n tokenHead: Bearer\r\n\r\nredis:\r\n database: forest\r\n key:\r\n admin: \'ums:admin\'\r\n token: \'ums:token\'\r\n resourceList: \'ums:resourceList\'\r\n expire:\r\n common: 86400\r\n \r\nqiniu:\r\n accessKey: FLWUJxiZY1_N-5d6J_jsdgbqyjVDUg86ghZHsaQW\r\n bucket: forestcloud\r\n path: http://fqn.hongweisoft.com/\r\n processName: \'null\'\r\n secretKey: So55w4fQ2dTQ6uMlWuUywmKG8ZTqVhWfr_3Ii7GI ', '3943242aeb8c03d812fbc60e15638a61', '2020-11-11 09:32:32', '2020-11-11 09:32:34', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  193. INSERT INTO `his_config_info` VALUES (61, 151, 'forest-portal.yml', 'DEFAULT_GROUP', 'forest-portal', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\n data:\r\n mongodb:\r\n host: 172.16.90.253\r\n port: 27017\r\n database: mall-port\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n\r\n rabbitmq:\r\n host: 172.16.90.64\r\n port: 5672\r\n virtual-host: /forest\r\n username: forest\r\n password: 123456\r\n publisher-confirms: true\r\n\r\nlogging:\r\n level:\r\n org.springframework.data.mongodb.core: debug\r\n com.hwrj.cloud.portal.mapper: debug\r\n com.hwrj.cloud.portal.dao: debug\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\nrabbitmq:\r\n queue:\r\n name:\r\n cancelOrder: cancelOrderQueue\r\nredis:\r\n database: forest\r\n key:\r\n authCode: \'ums:authCode\'\r\n telLoginCode: \'ums:authCode\'\r\n orderId: \'oms:orderId\'\r\n member: \'ums:member\'\r\n token: \'ums:token\'\r\n expire:\r\n authCode: 90\r\n authLoginCode: 240\r\n common: 86400\r\n\r\nforest:\r\n wx: \r\n password: forest123456\r\n\r\nsms:\r\n accessKeyId: LTAICB9TH0OAN3yJ\r\n accessKeySecret: lCuyL3MUQRLfoVw39W0NqWdVGoLV60\r\n signName: hywa\r\nwx:\r\n mp:\r\n aesKey: 123\r\n appId: wxbe90cc7c5233dd84\r\n secret: ec4a18ce1a7bcf17cf592c3d57cec68a\r\n token: 123\r\n url: http://wx.hw.hongweisoft.com/zddapi/forest-portal/wechat/h5/userInfo\r\n before: http://172.16.90.25:8080 ', '97913f07f8731b3404d0da55f2b01f81', '2020-11-11 09:34:19', '2020-11-11 09:34:22', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  194. INSERT INTO `his_config_info` VALUES (54, 152, 'forest-common.yml', 'DEFAULT_GROUP', '公共配置文件', 'secure:\r\n ignored:\r\n urls:\r\n - /swagger-ui.html\r\n - /swagger-resources/**\r\n - /swagger/**\r\n - /**/v2/api-docs\r\n - /**/*.js\r\n - /**/*.css\r\n - /**/*.png\r\n - /**/*.ico\r\n - /webjars/springfox-swagger-ui/**\r\n - /druid/**\r\n - /actuator/**\r\n - /sso/**\r\n - /wechat/**\r\n - /home/**\r\n - /product/**\r\n - /brand/**\r\n\r\njwt:\r\n tokenHeader: Authorization\r\n secret: forest-admin-secret\r\n expiration: 604800\r\n tokenHead: Bearer\r\n\r\nredis:\r\n database: forest\r\n key:\r\n admin: \'ums:admin\'\r\n token: \'ums:token\'\r\n resourceList: \'ums:resourceList\'\r\n expire:\r\n common: 86400\r\n \r\nqiniu:\r\n accessKey: FLWUJxiZY1_N-5d6J_jsdgbqyjVDUg86ghZHsaQW\r\n bucket: forestcloud\r\n path: http://fqn.hongweisoft.com/\r\n processName: \'null\'\r\n secretKey: So55w4fQ2dTQ6uMlWuUywmKG8ZTqVhWfr_3Ii7GI ', '3943242aeb8c03d812fbc60e15638a61', '2020-11-11 09:35:43', '2020-11-11 09:35:46', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  195. INSERT INTO `his_config_info` VALUES (62, 153, 'forest-gateway.yml', 'DEFAULT_GROUP', 'forest-gateway', 'spring:\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\nmanagement:\r\n endpoints:\r\n web:\r\n exposure:\r\n include: \'*\'\r\n endpoint:\r\n health:\r\n show-details: always', '87a43b9cb2386d498ad81fe0cbe4078f', '2020-11-11 09:37:02', '2020-11-11 09:37:04', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  196. INSERT INTO `his_config_info` VALUES (62, 154, 'forest-gateway.yml', 'DEFAULT_GROUP', 'forest-gateway', '# spring:\r\n# redis:\r\n# host: 172.16.90.253\r\n# database: 0\r\n# port: 6379\r\n# password: 123456\r\n# timeout: 300ms\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\nmanagement:\r\n endpoints:\r\n web:\r\n exposure:\r\n include: \'*\'\r\n endpoint:\r\n health:\r\n show-details: always', '7592bb64643277b0ab8e686aac63e63d', '2020-11-11 09:38:16', '2020-11-11 09:38:19', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  197. INSERT INTO `his_config_info` VALUES (62, 155, 'forest-gateway.yml', 'DEFAULT_GROUP', 'forest-gateway', 'spring:\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\nmanagement:\r\n endpoints:\r\n web:\r\n exposure:\r\n include: \'*\'\r\n endpoint:\r\n health:\r\n show-details: always', 'e5bc81959bd7dcc68a0e7ea9ee35c0b9', '2020-11-11 09:40:29', '2020-11-11 09:40:31', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  198. INSERT INTO `his_config_info` VALUES (54, 156, 'forest-common.yml', 'DEFAULT_GROUP', '公共配置文件', 'spring:\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n\r\nsecure:\r\n ignored:\r\n urls:\r\n - /swagger-ui.html\r\n - /swagger-resources/**\r\n - /swagger/**\r\n - /**/v2/api-docs\r\n - /**/*.js\r\n - /**/*.css\r\n - /**/*.png\r\n - /**/*.ico\r\n - /webjars/springfox-swagger-ui/**\r\n - /druid/**\r\n - /actuator/**\r\n - /sso/**\r\n - /wechat/**\r\n - /home/**\r\n - /product/**\r\n - /brand/**\r\n\r\njwt:\r\n tokenHeader: Authorization\r\n secret: forest-admin-secret\r\n expiration: 604800\r\n tokenHead: Bearer\r\n\r\nredis:\r\n database: forest\r\n key:\r\n admin: \'ums:admin\'\r\n token: \'ums:token\'\r\n resourceList: \'ums:resourceList\'\r\n expire:\r\n common: 86400\r\n \r\nqiniu:\r\n accessKey: FLWUJxiZY1_N-5d6J_jsdgbqyjVDUg86ghZHsaQW\r\n bucket: forestcloud\r\n path: http://fqn.hongweisoft.com/\r\n processName: \'null\'\r\n secretKey: So55w4fQ2dTQ6uMlWuUywmKG8ZTqVhWfr_3Ii7GI ', '91ba56f2836ffb26bfe55046d1851adf', '2020-11-11 09:41:21', '2020-11-11 09:41:23', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  199. INSERT INTO `his_config_info` VALUES (65, 157, 'forest-admin.yml', 'DEFAULT_GROUP', 'forest-admin', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n zipkin:\r\n base-url: http://localhost:9411\r\n locator:\r\n discovery:\r\n enabled: true\r\n sleuth:\r\n sampler:\r\n probability: 1.0\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:8095\r\n\r\nmanagement:\r\n endpoints:\r\n web:\r\n exposure:\r\n include: \'*\'\r\n endpoint:\r\n health:\r\n show-details: always\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\nlogging:\r\n level:\r\n root: info \r\n com.hwrj.cloud: debug\r\n\r\n sleuth:\r\n sampler:\r\n probability: 1.0\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091', '9fb35432e5cc822ec2d23700eb026bc6', '2020-11-11 09:43:58', '2020-11-11 09:44:01', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  200. INSERT INTO `his_config_info` VALUES (65, 158, 'forest-admin.yml', 'DEFAULT_GROUP', 'forest-admin', 'spring:\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\nmanagement:\r\n endpoints:\r\n web:\r\n exposure:\r\n include: \'*\'\r\n endpoint:\r\n health:\r\n show-details: always\r\n\r\njwt:\r\n tokenHeader: Authorization\r\n secret: forest-admin-secret\r\n expiration: 604800\r\n tokenHead: Bearer\r\nredis:\r\n database: forest\r\n key:\r\n admin: \'ums:admin\'\r\n token: \'ums:token\'\r\n resourceList: \'ums:resourceList\'\r\n expire:\r\n common: 86400', 'e5775335a62b81d8d69435ad20149b1d', '2020-11-11 09:44:47', '2020-11-11 09:44:49', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  201. INSERT INTO `his_config_info` VALUES (62, 159, 'forest-gateway.yml', 'DEFAULT_GROUP', 'forest-gateway', 'spring:\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\nmanagement:\r\n endpoints:\r\n web:\r\n exposure:\r\n include: \'*\'\r\n endpoint:\r\n health:\r\n show-details: always', '73b14f3ffe096324702bde2331da9c86', '2020-11-11 09:45:12', '2020-11-11 09:45:14', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  202. INSERT INTO `his_config_info` VALUES (65, 160, 'forest-admin.yml', 'DEFAULT_GROUP', 'forest-admin', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n zipkin:\r\n base-url: http://localhost:9411\r\n locator:\r\n discovery:\r\n enabled: true\r\n sleuth:\r\n sampler:\r\n probability: 1.0\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:8095\r\n\r\nmanagement:\r\n endpoints:\r\n web:\r\n exposure:\r\n include: \'*\'\r\n endpoint:\r\n health:\r\n show-details: always\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\nlogging:\r\n level:\r\n root: info \r\n com.hwrj.cloud: debug\r\n\r\n sleuth:\r\n sampler:\r\n probability: 1.0\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091', '9fb35432e5cc822ec2d23700eb026bc6', '2020-11-11 09:47:51', '2020-11-11 09:47:53', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  203. INSERT INTO `his_config_info` VALUES (54, 161, 'forest-common.yml', 'DEFAULT_GROUP', '公共配置文件', 'secure:\r\n ignored:\r\n urls:\r\n - /swagger-ui.html\r\n - /swagger-resources/**\r\n - /swagger/**\r\n - /**/v2/api-docs\r\n - /**/*.js\r\n - /**/*.css\r\n - /**/*.png\r\n - /**/*.ico\r\n - /webjars/springfox-swagger-ui/**\r\n - /druid/**\r\n - /actuator/**\r\n - /sso/**\r\n - /wechat/**\r\n - /home/**\r\n - /product/**\r\n - /brand/**\r\n\r\njwt:\r\n tokenHeader: Authorization\r\n secret: forest-admin-secret\r\n expiration: 604800\r\n tokenHead: Bearer\r\n\r\nredis:\r\n database: forest\r\n key:\r\n admin: \'ums:admin\'\r\n token: \'ums:token\'\r\n resourceList: \'ums:resourceList\'\r\n expire:\r\n common: 86400\r\n \r\nqiniu:\r\n accessKey: FLWUJxiZY1_N-5d6J_jsdgbqyjVDUg86ghZHsaQW\r\n bucket: forestcloud\r\n path: http://fqn.hongweisoft.com/\r\n processName: \'null\'\r\n secretKey: So55w4fQ2dTQ6uMlWuUywmKG8ZTqVhWfr_3Ii7GI ', '3943242aeb8c03d812fbc60e15638a61', '2020-11-11 09:51:48', '2020-11-11 09:51:51', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  204. INSERT INTO `his_config_info` VALUES (62, 162, 'forest-gateway.yml', 'DEFAULT_GROUP', 'forest-gateway', 'spring:\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\nmanagement:\r\n endpoints:\r\n web:\r\n exposure:\r\n include: \'*\'\r\n endpoint:\r\n health:\r\n show-details: always', '3f2abf6bebf713d5cae63c293d71de93', '2020-11-11 09:54:14', '2020-11-11 09:54:17', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  205. INSERT INTO `his_config_info` VALUES (65, 163, 'forest-admin.yml', 'DEFAULT_GROUP', 'forest-admin', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n zipkin:\r\n base-url: http://localhost:9411\r\n locator:\r\n discovery:\r\n enabled: true\r\n sleuth:\r\n sampler:\r\n probability: 1.0\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:8095\r\n\r\nmanagement:\r\n endpoints:\r\n web:\r\n exposure:\r\n include: \'*\'\r\n endpoint:\r\n health:\r\n show-details: always\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\nlogging:\r\n level:\r\n root: info \r\n com.hwrj.cloud: debug\r\n\r\n sleuth:\r\n sampler:\r\n probability: 1.0\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091', '9fb35432e5cc822ec2d23700eb026bc6', '2020-11-11 09:55:18', '2020-11-11 09:55:21', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  206. INSERT INTO `his_config_info` VALUES (54, 164, 'forest-common.yml', 'DEFAULT_GROUP', '公共配置文件', 'secure:\r\n ignored:\r\n urls:\r\n - /admin/login/\r\n - /swagger-ui.html\r\n - /swagger-resources/**\r\n - /swagger/**\r\n - /**/v2/api-docs\r\n - /**/*.js\r\n - /**/*.css\r\n - /**/*.png\r\n - /**/*.ico\r\n - /webjars/springfox-swagger-ui/**\r\n - /druid/**\r\n - /actuator/**\r\n - /sso/**\r\n - /wechat/**\r\n - /home/**\r\n - /product/**\r\n - /brand/**\r\n\r\njwt:\r\n tokenHeader: Authorization\r\n secret: forest-admin-secret\r\n expiration: 604800\r\n tokenHead: Bearer\r\n\r\nredis:\r\n database: forest\r\n key:\r\n admin: \'ums:admin\'\r\n token: \'ums:token\'\r\n resourceList: \'ums:resourceList\'\r\n expire:\r\n common: 86400\r\n \r\nqiniu:\r\n accessKey: FLWUJxiZY1_N-5d6J_jsdgbqyjVDUg86ghZHsaQW\r\n bucket: forestcloud\r\n path: http://fqn.hongweisoft.com/\r\n processName: \'null\'\r\n secretKey: So55w4fQ2dTQ6uMlWuUywmKG8ZTqVhWfr_3Ii7GI ', '8a9be8e2ba2fb6427fc09d1b80ae3e44', '2020-11-11 09:56:00', '2020-11-11 09:56:03', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  207. INSERT INTO `his_config_info` VALUES (54, 165, 'forest-common.yml', 'DEFAULT_GROUP', '公共配置文件', 'secure:\r\n ignored:\r\n urls:\r\n - /swagger-ui.html\r\n - /swagger-resources/**\r\n - /swagger/**\r\n - /**/v2/api-docs\r\n - /**/*.js\r\n - /**/*.css\r\n - /**/*.png\r\n - /**/*.ico\r\n - /webjars/springfox-swagger-ui/**\r\n - /druid/**\r\n - /actuator/**\r\n - /sso/**\r\n - /wechat/**\r\n - /home/**\r\n - /product/**\r\n - /brand/**\r\n \r\nqiniu:\r\n accessKey: FLWUJxiZY1_N-5d6J_jsdgbqyjVDUg86ghZHsaQW\r\n bucket: forestcloud\r\n path: http://fqn.hongweisoft.com/\r\n processName: \'null\'\r\n secretKey: So55w4fQ2dTQ6uMlWuUywmKG8ZTqVhWfr_3Ii7GI ', 'e02edb18eb1e8c8bf40bf238b8655e67', '2020-11-11 09:57:38', '2020-11-11 09:57:41', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  208. INSERT INTO `his_config_info` VALUES (62, 166, 'forest-gateway.yml', 'DEFAULT_GROUP', 'forest-gateway', 'spring:\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\nmanagement:\r\n endpoints:\r\n web:\r\n exposure:\r\n include: \'*\'\r\n endpoint:\r\n health:\r\n show-details: always\r\nsecure:\r\n ignored:\r\n urls:\r\n - /swagger-ui.html\r\n - /swagger-resources/**\r\n - /swagger/**\r\n - /**/v2/api-docs\r\n - /**/*.js\r\n - /**/*.css\r\n - /**/*.png\r\n - /**/*.ico\r\n - /webjars/springfox-swagger-ui/**\r\n - /actuator/**\r\n - /druid/**\r\n - /home/**\r\n - /product/**\r\n - /wechat/h5/authorize\r\n - /wechat/h5/userInfo\r\n - /admin/login\r\n - /sso/login\r\n - /sso/getLoginCode\r\n - /sso/register\r\n - /sso/getAuthCode\r\n - /admin/register\r\n - /admin/info\r\n - /admin/logout\r\n - /minio/upload\r\n - /sso/loginPhone\r\n - /product/import\r\n - /big/**\r\n - /bigData/**\r\n - /first/upload\r\njwt:\r\n tokenHeader: Authorization\r\n secret: forest-admin-secret\r\n expiration: 604800\r\n tokenHead: Bearer\r\nredis:\r\n database: forest\r\n key:\r\n admin: \'ums:admin\'\r\n token: \'ums:token\'\r\n resourceList: \'ums:resourceList\'\r\n expire:\r\n common: 86400', 'acd5e5b0051d92309af88780d816a395', '2020-11-11 09:57:57', '2020-11-11 09:58:00', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  209. INSERT INTO `his_config_info` VALUES (65, 167, 'forest-admin.yml', 'DEFAULT_GROUP', 'forest-admin', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n zipkin:\r\n base-url: http://localhost:9411\r\n locator:\r\n discovery:\r\n enabled: true\r\n sleuth:\r\n sampler:\r\n probability: 1.0\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:8095\r\n\r\nmanagement:\r\n endpoints:\r\n web:\r\n exposure:\r\n include: \'*\'\r\n endpoint:\r\n health:\r\n show-details: always\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\nlogging:\r\n level:\r\n root: info \r\n com.hwrj.cloud: debug\r\n\r\n sleuth:\r\n sampler:\r\n probability: 1.0\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\nsecure:\r\n ignored:\r\n urls:\r\n - /swagger-ui.html\r\n - /swagger-resources/**\r\n - /swagger/**\r\n - /**/v2/api-docs\r\n - /**/*.js\r\n - /**/*.css\r\n - /**/*.png\r\n - /**/*.ico\r\n - /webjars/springfox-swagger-ui/**\r\n - /actuator/**\r\n - /druid/**\r\n - /admin/login\r\n - /admin/register\r\n - /admin/info\r\n - /admin/logout\r\n - /minio/upload\r\n - /product/import\r\n - /big/**\r\n - /bigData/**\r\n - /first/upload\r\n - /doc.html\r\njwt:\r\n tokenHeader: Authorization\r\n secret: forest-admin-secret\r\n expiration: 604800\r\n tokenHead: Bearer\r\n\r\nredis:\r\n database: forest\r\n key:\r\n admin: \'ums:admin\'\r\n token: \'ums:token\'\r\n resourceList: \'ums:resourceList\'\r\n expire:\r\n common: 86400\r\nqiniu:\r\n accessKey: FLWUJxiZY1_N-5d6J_jsdgbqyjVDUg86ghZHsaQW\r\n bucket: forestcloud\r\n path: http://fqn.hongweisoft.com/\r\n processName: \'null\'\r\n secretKey: So55w4fQ2dTQ6uMlWuUywmKG8ZTqVhWfr_3Ii7GI', 'f2e7f0988973de01408bfccc87d1ab2b', '2020-11-11 09:58:17', '2020-11-11 09:58:20', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  210. INSERT INTO `his_config_info` VALUES (54, 168, 'forest-common.yml', 'DEFAULT_GROUP', '公共配置文件', 'secure:\r\n ignored:\r\n urls:\r\n - /swagger-ui.html\r\n - /swagger-resources/**\r\n - /swagger/**\r\n - /**/v2/api-docs\r\n - /**/*.js\r\n - /**/*.css\r\n - /**/*.png\r\n - /**/*.ico\r\n - /webjars/springfox-swagger-ui/**\r\n - /actuator/**\r\n - /druid/**\r\n - /home/**\r\n - /product/**\r\n - /wechat/h5/authorize\r\n - /wechat/h5/userInfo\r\n - /admin/login\r\n - /sso/login\r\n - /sso/getLoginCode\r\n - /sso/register\r\n - /sso/getAuthCode\r\n - /sso/loginPhone\r\n - /admin/register\r\n - /admin/info\r\n - /admin/logout\r\n - /minio/upload\r\n - /product/import\r\n - /big/**\r\n - /bigData/**\r\n - /first/upload\r\n\r\nqiniu:\r\n accessKey: FLWUJxiZY1_N-5d6J_jsdgbqyjVDUg86ghZHsaQW\r\n bucket: forestcloud\r\n path: http://fqn.hongweisoft.com/\r\n processName: \'null\'\r\n secretKey: So55w4fQ2dTQ6uMlWuUywmKG8ZTqVhWfr_3Ii7GI ', '987a3d9328b7ffe561dfd790e029832d', '2020-11-11 10:09:20', '2020-11-11 10:09:23', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  211. INSERT INTO `his_config_info` VALUES (54, 169, 'forest-common.yml', 'DEFAULT_GROUP', '公共配置文件', 'secure:\r\n ignored:\r\n urls:\r\n - /swagger-ui.html\r\n - /swagger-resources/**\r\n - /swagger/**\r\n - /**/v2/api-docs\r\n - /**/*.js\r\n - /**/*.css\r\n - /**/*.png\r\n - /**/*.ico\r\n - /webjars/springfox-swagger-ui/**\r\n - /actuator/**\r\n - /druid/**\r\n - /home/**\r\n - /product/**\r\n - /wechat/h5/authorize\r\n - /wechat/h5/userInfo\r\n - /admin/login\r\n - /sso/login\r\n - /sso/getLoginCode\r\n - /sso/register\r\n - /sso/getAuthCode\r\n - /admin/register\r\n - /admin/info\r\n - /admin/logout\r\n - /minio/upload\r\n - /sso/loginPhone\r\n - /product/import\r\n - /big/**\r\n - /bigData/**\r\n - /first/upload\r\n - /doc.html\r\n - /sso/**\r\n - /wechat/**\r\n - /brand/**\r\n\r\nqiniu:\r\n accessKey: FLWUJxiZY1_N-5d6J_jsdgbqyjVDUg86ghZHsaQW\r\n bucket: forestcloud\r\n path: http://fqn.hongweisoft.com/\r\n processName: \'null\'\r\n secretKey: So55w4fQ2dTQ6uMlWuUywmKG8ZTqVhWfr_3Ii7GI ', '270842a1b7f897aed6307bfe0401be7e', '2020-11-11 10:09:32', '2020-11-11 10:09:35', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  212. INSERT INTO `his_config_info` VALUES (54, 170, 'forest-common.yml', 'DEFAULT_GROUP', '公共配置文件', 'secure:\r\n ignored:\r\n urls:\r\n - /swagger-ui.html\r\n - /swagger-resources/**\r\n - /swagger/**\r\n - /**/v2/api-docs\r\n - /**/*.js\r\n - /**/*.css\r\n - /**/*.png\r\n - /**/*.ico\r\n - /webjars/springfox-swagger-ui/**\r\n - /actuator/**\r\n - /druid/**\r\n - /home/**\r\n - /product/**\r\n - /wechat/h5/authorize\r\n - /wechat/h5/userInfo\r\n - /admin/login\r\n - /sso/login\r\n - /sso/getLoginCode\r\n - /sso/register\r\n - /sso/getAuthCode\r\n - /admin/register\r\n - /admin/info\r\n - /admin/logout\r\n - /minio/upload\r\n - /sso/loginPhone\r\n - /product/import\r\n - /big/**\r\n - /bigData/**\r\n - /first/upload\r\n - /doc.html\r\n - /sso/**\r\n - /wechat/**\r\n - /brand/**\r\n\r\nqiniu:\r\n accessKey: FLWUJxiZY1_N-5d6J_jsdgbqyjVDUg86ghZHsaQW\r\n bucket: forestcloud\r\n path: http://fqn.hongweisoft.com/\r\n processName: \'null\'\r\n secretKey: So55w4fQ2dTQ6uMlWuUywmKG8ZTqVhWfr_3Ii7GI ', '270842a1b7f897aed6307bfe0401be7e', '2020-11-11 10:11:30', '2020-11-11 10:11:33', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  213. INSERT INTO `his_config_info` VALUES (65, 171, 'forest-admin.yml', 'DEFAULT_GROUP', 'forest-admin', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n zipkin:\r\n base-url: http://localhost:9411\r\n locator:\r\n discovery:\r\n enabled: true\r\n sleuth:\r\n sampler:\r\n probability: 1.0\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:8095\r\n\r\nmanagement:\r\n endpoints:\r\n web:\r\n exposure:\r\n include: \'*\'\r\n endpoint:\r\n health:\r\n show-details: always\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\nlogging:\r\n level:\r\n root: info \r\n com.hwrj.cloud: debug\r\n\r\n sleuth:\r\n sampler:\r\n probability: 1.0\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\n\r\njwt:\r\n tokenHeader: Authorization\r\n secret: forest-admin-secret\r\n expiration: 604800\r\n tokenHead: Bearer\r\n\r\nredis:\r\n database: forest\r\n key:\r\n admin: \'ums:admin\'\r\n token: \'ums:token\'\r\n resourceList: \'ums:resourceList\'\r\n expire:\r\n common: 86400\r\nqiniu:\r\n accessKey: FLWUJxiZY1_N-5d6J_jsdgbqyjVDUg86ghZHsaQW\r\n bucket: forestcloud\r\n path: http://fqn.hongweisoft.com/\r\n processName: \'null\'\r\n secretKey: So55w4fQ2dTQ6uMlWuUywmKG8ZTqVhWfr_3Ii7GI', '66aca8932091be2c6f955dac61ab3916', '2020-11-11 10:12:08', '2020-11-11 10:12:11', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  214. INSERT INTO `his_config_info` VALUES (62, 172, 'forest-gateway.yml', 'DEFAULT_GROUP', 'forest-gateway', 'spring:\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\nmanagement:\r\n endpoints:\r\n web:\r\n exposure:\r\n include: \'*\'\r\n endpoint:\r\n health:\r\n show-details: always\r\n \r\njwt:\r\n tokenHeader: Authorization\r\n secret: forest-admin-secret\r\n expiration: 604800\r\n tokenHead: Bearer\r\nredis:\r\n database: forest\r\n key:\r\n admin: \'ums:admin\'\r\n token: \'ums:token\'\r\n resourceList: \'ums:resourceList\'\r\n expire:\r\n common: 86400', 'e12b78a82cbd0f0993a4917811a3ee13', '2020-11-11 10:14:58', '2020-11-11 10:15:01', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  215. INSERT INTO `his_config_info` VALUES (61, 173, 'forest-portal.yml', 'DEFAULT_GROUP', 'forest-portal', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\n data:\r\n mongodb:\r\n host: 172.16.90.253\r\n port: 27017\r\n database: mall-port\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n\r\n rabbitmq:\r\n host: 172.16.90.64\r\n port: 5672\r\n virtual-host: /forest\r\n username: forest\r\n password: 123456\r\n publisher-confirms: true\r\n\r\nlogging:\r\n level:\r\n org.springframework.data.mongodb.core: debug\r\n com.hwrj.cloud.portal.mapper: debug\r\n com.hwrj.cloud.portal.dao: debug\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\nrabbitmq:\r\n queue:\r\n name:\r\n cancelOrder: cancelOrderQueue\r\nredis:\r\n database: forest\r\n key:\r\n authCode: \'ums:authCode\'\r\n telLoginCode: \'ums:authCode\'\r\n orderId: \'oms:orderId\'\r\n member: \'ums:member\'\r\n token: \'ums:token\'\r\n expire:\r\n authCode: 90\r\n authLoginCode: 240\r\n common: 86400\r\n\r\nforest:\r\n wx: \r\n password: forest123456\r\n\r\nsms:\r\n accessKeyId: LTAICB9TH0OAN3yJ\r\n accessKeySecret: lCuyL3MUQRLfoVw39W0NqWdVGoLV60\r\n signName: hywa\r\n \r\nwx:\r\n mp:\r\n aesKey: 123\r\n appId: wxbe90cc7c5233dd84\r\n secret: ec4a18ce1a7bcf17cf592c3d57cec68a\r\n token: 123\r\n url: http://wx.hw.hongweisoft.com/zddapi/forest-portal/wechat/h5/userInfo\r\n before: http://172.16.90.25:8080 ', '1b29776f838082ef6972b1cde68906c1', '2020-11-11 10:25:11', '2020-11-11 10:25:14', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  216. INSERT INTO `his_config_info` VALUES (61, 174, 'forest-portal.yml', 'DEFAULT_GROUP', 'forest-portal', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\n data:\r\n mongodb:\r\n host: 172.16.90.253\r\n port: 27017\r\n database: mall-port\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n\r\n rabbitmq:\r\n host: 172.16.90.64\r\n port: 5672\r\n virtual-host: /forest\r\n username: forest\r\n password: 123456\r\n publisher-confirms: true\r\n\r\nlogging:\r\n level:\r\n org.springframework.data.mongodb.core: debug\r\n com.hwrj.cloud.portal.mapper: debug\r\n com.hwrj.cloud.portal.dao: debug\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\nrabbitmq:\r\n queue:\r\n name:\r\n cancelOrder: cancelOrderQueue\r\nredis:\r\n database: forest\r\n key:\r\n authCode: \'ums:authCode\'\r\n telLoginCode: \'ums:authCode\'\r\n orderId: \'oms:orderId\'\r\n member: \'ums:member\'\r\n token: \'ums:token\'\r\n expire:\r\n authCode: 90\r\n authLoginCode: 240\r\n common: 86400\r\njwt:\r\n #JWT存储的请求头\r\n tokenHeader: Authorization\r\n #JWT加解密使用的密钥\r\n secret: forest-admin-secret\r\n #JWT的超期限时间(60*60*24*7)\r\n expiration: 604800\r\n #JWT负载中拿到开头\r\n tokenHead: Bearer\r\n \r\nforest:\r\n wx: \r\n password: forest123456\r\n\r\nsms:\r\n accessKeyId: LTAICB9TH0OAN3yJ\r\n accessKeySecret: lCuyL3MUQRLfoVw39W0NqWdVGoLV60\r\n signName: hywa\r\n \r\nwx:\r\n mp:\r\n aesKey: 123\r\n appId: wxbe90cc7c5233dd84\r\n secret: ec4a18ce1a7bcf17cf592c3d57cec68a\r\n token: 123\r\n url: http://wx.hw.hongweisoft.com/zddapi/forest-portal/wechat/h5/userInfo\r\n before: http://172.16.90.25:8080 ', 'aae274d93c6f7f5e4c74620ee3218213', '2020-11-12 16:17:43', '2020-11-12 16:17:43', NULL, '172.16.90.8', 'U', '');
  217. INSERT INTO `his_config_info` VALUES (61, 175, 'forest-portal.yml', 'DEFAULT_GROUP', 'forest-portal', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\n data:\r\n mongodb:\r\n host: 172.16.90.253\r\n port: 27017\r\n database: mall-port\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n\r\n rabbitmq:\r\n host: 172.16.90.64\r\n port: 5672\r\n virtual-host: /forest\r\n username: forest\r\n password: 123456\r\n publisher-confirms: true\r\n\r\nlogging:\r\n level:\r\n org.springframework.data.mongodb.core: debug\r\n com.hwrj.cloud.portal.mapper: debug\r\n com.hwrj.cloud.portal.dao: debug\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\nrabbitmq:\r\n queue:\r\n name:\r\n cancelOrder: cancelOrderQueue\r\nredis:\r\n database: forest\r\n key:\r\n authCode: \'ums:authCode\'\r\n telLoginCode: \'ums:authCode\'\r\n orderId: \'oms:orderId\'\r\n member: \'ums:member\'\r\n token: \'ums:token\'\r\n expire:\r\n authCode: 90\r\n authLoginCode: 240\r\n common: 86400\r\njwt:\r\n #JWT存储的请求头\r\n tokenHeader: Authorization\r\n #JWT加解密使用的密钥\r\n secret: forest-admin-secret\r\n #JWT的超期限时间(60*60*24*7)\r\n expiration: 604800\r\n #JWT负载中拿到开头\r\n tokenHead: Bearer\r\n \r\nforest:\r\n wx: \r\n password: forest123456\r\n\r\nsms:\r\n accessKeyId: LTAICB9TH0OAN3yJ\r\n accessKeySecret: lCuyL3MUQRLfoVw39W0NqWdVGoLV60\r\n signName: hywa\r\n \r\nwx:\r\n mp:\r\n aesKey: 123\r\n appId: wxbe90cc7c5233dd84\r\n secret: ec4a18ce1a7bcf17cf592c3d57cec68a\r\n token: 123\r\n url: http://wx.hw.hongweisoft.com/zddapi/forest-portal/wechat/h5/userInfo\r\n before: http://172.16.90.25:8080\r\n pay:\r\n appId: wxbe90cc7c5233dd84\r\n mchId: 1583849731\r\n mchKey: B5F5A628C91D869F4CA357D2BCD63006\r\n wxpayH5callbackurl: http://tanhui.hongweisoft.com/wechat/h5/payResult\r\n wxpayAppcallbackurl: http://tanhui.hongweisoft.com/wechat/app/payResult', '09e0efbe57a5d696d1949d2f2262b7cb', '2020-11-12 16:31:24', '2020-11-12 16:31:24', NULL, '172.16.90.8', 'U', '');
  218. INSERT INTO `his_config_info` VALUES (54, 176, 'forest-common.yml', 'DEFAULT_GROUP', '公共配置文件', 'secure:\r\n ignored:\r\n urls:\r\n - /swagger-ui.html\r\n - /swagger-resources/**\r\n - /swagger/**\r\n - /**/v2/api-docs\r\n - /**/*.js\r\n - /**/*.css\r\n - /**/*.png\r\n - /**/*.ico\r\n - /webjars/springfox-swagger-ui/**\r\n - /actuator/**\r\n - /druid/**\r\n - /home/**\r\n - /product/**\r\n - /wechat/h5/authorize\r\n - /wechat/h5/userInfo\r\n - /admin/login\r\n - /sso/login\r\n - /sso/getLoginCode\r\n - /sso/register\r\n - /sso/getAuthCode\r\n - /admin/register\r\n - /admin/info\r\n - /admin/logout\r\n - /minio/upload\r\n - /sso/loginPhone\r\n - /product/import\r\n - /big/**\r\n - /bigData/**\r\n - /first/upload\r\n - /doc.html\r\n - /sso/**\r\n - /wechat/**\r\n - /brand/**\r\n\r\nqiniu:\r\n accessKey: FLWUJxiZY1_N-5d6J_jsdgbqyjVDUg86ghZHsaQW\r\n bucket: forestcloud\r\n path: http://fqn.hongweisoft.com/\r\n processName: \'null\'\r\n secretKey: So55w4fQ2dTQ6uMlWuUywmKG8ZTqVhWfr_3Ii7GI ', '270842a1b7f897aed6307bfe0401be7e', '2020-11-12 16:40:01', '2020-11-12 16:40:01', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  219. INSERT INTO `his_config_info` VALUES (61, 177, 'forest-portal.yml', 'DEFAULT_GROUP', 'forest-portal', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\n data:\r\n mongodb:\r\n host: 172.16.90.253\r\n port: 27017\r\n database: mall-port\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n\r\n rabbitmq:\r\n host: 172.16.90.64\r\n port: 5672\r\n virtual-host: /forest\r\n username: forest\r\n password: 123456\r\n publisher-confirms: true\r\n\r\nlogging:\r\n level:\r\n org.springframework.data.mongodb.core: debug\r\n com.hwrj.cloud.portal.mapper: debug\r\n com.hwrj.cloud.portal.dao: debug\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\nrabbitmq:\r\n queue:\r\n name:\r\n cancelOrder: cancelOrderQueue\r\nredis:\r\n database: forest\r\n key:\r\n authCode: \'ums:authCode\'\r\n telLoginCode: \'ums:authCode\'\r\n orderId: \'oms:orderId\'\r\n member: \'ums:member\'\r\n token: \'ums:token\'\r\n expire:\r\n authCode: 90\r\n authLoginCode: 240\r\n common: 86400\r\njwt:\r\n #JWT存储的请求头\r\n tokenHeader: Authorization\r\n #JWT加解密使用的密钥\r\n secret: forest-admin-secret\r\n #JWT的超期限时间(60*60*24*7)\r\n expiration: 604800\r\n #JWT负载中拿到开头\r\n tokenHead: Bearer\r\n \r\nforest:\r\n wx: \r\n password: forest123456\r\n\r\nsms:\r\n accessKeyId: LTAICB9TH0OAN3yJ\r\n accessKeySecret: lCuyL3MUQRLfoVw39W0NqWdVGoLV60\r\n signName: hywa\r\n \r\nwx:\r\n mp:\r\n aesKey: 123\r\n appId: wxbe90cc7c5233dd84\r\n secret: ec4a18ce1a7bcf17cf592c3d57cec68a\r\n token: 123\r\n url: http://wx.hw.hongweisoft.com/zddapi/forest-portal/wechat/h5/userInfo\r\n before: http://172.16.90.25:8080\r\n pay:\r\n appId: wxbe90cc7c5233dd84\r\n mchId: 1583849731\r\n mchKey: B5F5A628C91D869F4CA357D2BCD63006\r\n wxpayAppcallbackurl: http://wx.hw.hongweisoft.com/zddapi/forest-portal/app/payResult', '53042b3c30c258adfbc9e559a528d1ee', '2020-11-12 16:43:45', '2020-11-12 16:43:45', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  220. INSERT INTO `his_config_info` VALUES (61, 178, 'forest-portal.yml', 'DEFAULT_GROUP', 'forest-portal', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\n data:\r\n mongodb:\r\n host: 172.16.90.253\r\n port: 27017\r\n database: mall-port\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n\r\n rabbitmq:\r\n host: 172.16.90.64\r\n port: 5672\r\n virtual-host: /forest\r\n username: forest\r\n password: 123456\r\n publisher-confirms: true\r\n\r\nlogging:\r\n level:\r\n org.springframework.data.mongodb.core: debug\r\n com.hwrj.cloud.portal.mapper: debug\r\n com.hwrj.cloud.portal.dao: debug\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\nrabbitmq:\r\n queue:\r\n name:\r\n cancelOrder: cancelOrderQueue\r\nredis:\r\n database: forest\r\n key:\r\n authCode: \'ums:authCode\'\r\n telLoginCode: \'ums:authCode\'\r\n orderId: \'oms:orderId\'\r\n member: \'ums:member\'\r\n token: \'ums:token\'\r\n expire:\r\n authCode: 90\r\n authLoginCode: 240\r\n common: 86400\r\njwt:\r\n #JWT存储的请求头\r\n tokenHeader: Authorization\r\n #JWT加解密使用的密钥\r\n secret: forest-admin-secret\r\n #JWT的超期限时间(60*60*24*7)\r\n expiration: 604800\r\n #JWT负载中拿到开头\r\n tokenHead: Bearer\r\n \r\nforest:\r\n wx: \r\n password: forest123456\r\n\r\nsms:\r\n accessKeyId: LTAICB9TH0OAN3yJ\r\n accessKeySecret: lCuyL3MUQRLfoVw39W0NqWdVGoLV60\r\n signName: hywa\r\n \r\nwx:\r\n mp:\r\n aesKey: 123\r\n appId: wxbe90cc7c5233dd84\r\n secret: ec4a18ce1a7bcf17cf592c3d57cec68a\r\n token: 123\r\n url: http://wx.hw.hongweisoft.com/zddapi/forest-portal/wechat/h5/userInfo\r\n before: http://172.16.90.25:8080\r\n pay:\r\n appId: wxbe90cc7c5233dd84\r\n mchId: 1583849731\r\n mchKey: B5F5A628C91D869F4CA357D2BCD6300\r\n wxpayAppcallbackurl: http://wx.hw.hongweisoft.com/zddapi/forest-portal/app/payResult', 'b320be192e906942fa7160dac38aeffd', '2020-11-13 15:42:14', '2020-11-13 15:42:16', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  221. INSERT INTO `his_config_info` VALUES (61, 179, 'forest-portal.yml', 'DEFAULT_GROUP', 'forest-portal', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\n data:\r\n mongodb:\r\n host: 172.16.90.253\r\n port: 27017\r\n database: mall-port\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n\r\n rabbitmq:\r\n host: 172.16.90.64\r\n port: 5672\r\n virtual-host: /forest\r\n username: forest\r\n password: 123456\r\n publisher-confirms: true\r\nmyredis:\r\n address: redis://${spring.redis.host}:${spring.redis.port}\r\n passord: ${spring.redis.password}\r\n \r\nlogging:\r\n level:\r\n org.springframework.data.mongodb.core: debug\r\n com.hwrj.cloud.portal.mapper: debug\r\n com.hwrj.cloud.portal.dao: debug\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\nrabbitmq:\r\n queue:\r\n name:\r\n cancelOrder: cancelOrderQueue\r\nredis:\r\n database: forest\r\n key:\r\n authCode: \'ums:authCode\'\r\n telLoginCode: \'ums:authCode\'\r\n orderId: \'oms:orderId\'\r\n member: \'ums:member\'\r\n token: \'ums:token\'\r\n expire:\r\n authCode: 90\r\n authLoginCode: 240\r\n common: 86400\r\njwt:\r\n #JWT存储的请求头\r\n tokenHeader: Authorization\r\n #JWT加解密使用的密钥\r\n secret: forest-admin-secret\r\n #JWT的超期限时间(60*60*24*7)\r\n expiration: 604800\r\n #JWT负载中拿到开头\r\n tokenHead: Bearer\r\n \r\nforest:\r\n wx: \r\n password: forest123456\r\n\r\nsms:\r\n accessKeyId: LTAICB9TH0OAN3yJ\r\n accessKeySecret: lCuyL3MUQRLfoVw39W0NqWdVGoLV60\r\n signName: hywa\r\n \r\nwx:\r\n mp:\r\n aesKey: 123\r\n appId: wxbe90cc7c5233dd84\r\n secret: ec4a18ce1a7bcf17cf592c3d57cec68a\r\n token: 123\r\n url: http://wx.hw.hongweisoft.com/zddapi/forest-portal/wechat/h5/userInfo\r\n before: http://172.16.90.25:8080\r\n pay:\r\n appId: wxbe90cc7c5233dd84\r\n mchId: 1583849731\r\n mchKey: B5F5A628C91D869F4CA357D2BCD6300\r\n wxpayAppcallbackurl: http://wx.hw.hongweisoft.com/zddapi/forest-portal/app/payResult', '4e1fcb5b2eeec9183bf2110f5ee2755b', '2020-11-13 15:42:18', '2020-11-13 15:42:20', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  222. INSERT INTO `his_config_info` VALUES (61, 180, 'forest-portal.yml', 'DEFAULT_GROUP', 'forest-portal', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\n data:\r\n mongodb:\r\n host: 172.16.90.253\r\n port: 27017\r\n database: mall-port\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n\r\n rabbitmq:\r\n host: 172.16.90.64\r\n port: 5672\r\n virtual-host: /forest\r\n username: forest\r\n password: 123456\r\n publisher-confirms: true\r\nmyredis:\r\n address: redis://${spring.redis.host}:${spring.redis.port}\r\n passord: ${spring.redis.password}\r\n \r\nlogging:\r\n level:\r\n org.springframework.data.mongodb.core: debug\r\n com.hwrj.cloud.portal.mapper: debug\r\n com.hwrj.cloud.portal.dao: debug\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\nrabbitmq:\r\n queue:\r\n name:\r\n cancelOrder: cancelOrderQueue\r\nredis:\r\n database: forest\r\n key:\r\n authCode: \'ums:authCode\'\r\n telLoginCode: \'ums:authCode\'\r\n orderId: \'oms:orderId\'\r\n member: \'ums:member\'\r\n token: \'ums:token\'\r\n expire:\r\n authCode: 90\r\n authLoginCode: 240\r\n common: 86400\r\njwt:\r\n #JWT存储的请求头\r\n tokenHeader: Authorization\r\n #JWT加解密使用的密钥\r\n secret: forest-admin-secret\r\n #JWT的超期限时间(60*60*24*7)\r\n expiration: 604800\r\n #JWT负载中拿到开头\r\n tokenHead: Bearer\r\n \r\nforest:\r\n wx: \r\n password: forest123456\r\n\r\nsms:\r\n accessKeyId: LTAICB9TH0OAN3yJ\r\n accessKeySecret: lCuyL3MUQRLfoVw39W0NqWdVGoLV60\r\n signName: hywa\r\n \r\nwx:\r\n mp:\r\n aesKey: 123\r\n appId: wxbe90cc7c5233dd84\r\n secret: ec4a18ce1a7bcf17cf592c3d57cec68a\r\n token: 123\r\n url: http://wx.hw.hongweisoft.com/zddapi/forest-portal/wechat/h5/userInfo\r\n before: http://172.16.90.25:8080\r\n pay:\r\n appId: wxbe90cc7c5233dd84\r\n mchId: 1583849731\r\n mchKey: B5F5A628C91D869F4CA357D2BCD6300\r\n wxpayAppcallbackurl: http://wx.hw.hongweisoft.com/zddapi/forest-portal/app/payResult', '4e1fcb5b2eeec9183bf2110f5ee2755b', '2020-11-13 17:14:42', '2020-11-13 17:14:44', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  223. INSERT INTO `his_config_info` VALUES (65, 181, 'forest-admin.yml', 'DEFAULT_GROUP', 'forest-admin', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n zipkin:\r\n base-url: http://localhost:9411\r\n locator:\r\n discovery:\r\n enabled: true\r\n sleuth:\r\n sampler:\r\n probability: 1.0\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:8095\r\n\r\nmanagement:\r\n endpoints:\r\n web:\r\n exposure:\r\n include: \'*\'\r\n endpoint:\r\n health:\r\n show-details: always\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\nlogging:\r\n level:\r\n root: info \r\n com.hwrj.cloud: debug\r\n\r\n sleuth:\r\n sampler:\r\n probability: 1.0\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\n\r\njwt:\r\n tokenHeader: Authorization\r\n secret: forest-admin-secret\r\n expiration: 604800\r\n tokenHead: Bearer\r\n\r\nredis:\r\n database: forest\r\n key:\r\n admin: \'ums:admin\'\r\n token: \'ums:token\'\r\n resourceList: \'ums:resourceList\'\r\n expire:\r\n common: 86400', '8894d85b8bc9cb7d39f1ce41d207934d', '2020-11-13 17:42:59', '2020-11-13 17:43:01', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  224. INSERT INTO `his_config_info` VALUES (61, 182, 'forest-portal.yml', 'DEFAULT_GROUP', 'forest-portal', 'spring:\r\n datasource:\r\n url: jdbc:mysql://172.16.90.253:3306/forest-cloud-mall?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai\r\n username: root\r\n password: 123456\r\n druid:\r\n initial-size: 5\r\n min-idle: 10\r\n max-active: 20\r\n web-stat-filter:\r\n exclusions: \"*.js,*.gif,*.jpg,*.png,*.css,*.ico,/druid/*\"\r\n stat-view-servlet:\r\n login-username: druid\r\n login-password: druid\r\n boot:\r\n admin:\r\n client:\r\n url: http://localhost:9091\r\n data:\r\n mongodb:\r\n host: 172.16.90.253\r\n port: 27017\r\n database: mall-port\r\n redis:\r\n host: 172.16.90.253\r\n database: 0\r\n port: 6379\r\n password: 123456\r\n timeout: 300ms\r\n\r\n rabbitmq:\r\n host: 172.16.90.64\r\n port: 5672\r\n virtual-host: /forest\r\n username: forest\r\n password: 123456\r\n publisher-confirms: true\r\nmyredis:\r\n address: redis://${spring.redis.host}:${spring.redis.port}\r\n passord: ${spring.redis.password}\r\n \r\nlogging:\r\n level:\r\n org.springframework.data.mongodb.core: debug\r\n com.hwrj.cloud.portal.mapper: debug\r\n com.hwrj.cloud.portal.dao: debug\r\nmybatis:\r\n mapper-locations:\r\n - classpath:dao/*.xml\r\n - classpath*:com/**/mapper/*.xml\r\nrabbitmq:\r\n queue:\r\n name:\r\n cancelOrder: cancelOrderQueue\r\nredis:\r\n database: forest\r\n key:\r\n authCode: \'ums:authCode\'\r\n telLoginCode: \'ums:authCode\'\r\n orderId: \'oms:orderId\'\r\n member: \'ums:member\'\r\n token: \'ums:token\'\r\n expire:\r\n authCode: 90\r\n authLoginCode: 240\r\n common: 86400\r\njwt:\r\n #JWT存储的请求头\r\n tokenHeader: Authorization\r\n #JWT加解密使用的密钥\r\n secret: forest-admin-secret\r\n #JWT的超期限时间(60*60*24*7)\r\n expiration: 604800\r\n #JWT负载中拿到开头\r\n tokenHead: Bearer\r\n \r\nforest:\r\n wx: \r\n password: forest123456\r\n\r\nsms:\r\n accessKeyId: LTAICB9TH0OAN3yJ\r\n accessKeySecret: lCuyL3MUQRLfoVw39W0NqWdVGoLV60\r\n signName: hywa\r\n \r\nwx:\r\n mp:\r\n aesKey: 123\r\n appId: wxbe90cc7c5233dd84\r\n secret: ec4a18ce1a7bcf17cf592c3d57cec68a\r\n token: 123\r\n url: http://wx.hw.hongweisoft.com/zddapi/forest-portal/wechat/h5/userInfo\r\n before: http://172.16.90.25:8080\r\n pay:\r\n appId: wxbe90cc7c5233dd84\r\n mchId: 1583849731\r\n mchKey: B5F5A628C91D869F4CA357D2BCD6300\r\n wxpayAppcallbackurl: http://wx.hw.hongweisoft.com/zddtest/forest-portal/app/payResult', 'af18ba08778d94fdb4060c9eb608de63', '2020-11-16 14:08:53', '2020-11-16 14:08:53', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  225. INSERT INTO `his_config_info` VALUES (54, 183, 'forest-common.yml', 'DEFAULT_GROUP', '公共配置文件', 'secure:\r\n ignored:\r\n urls:\r\n - /swagger-ui.html\r\n - /swagger-resources/**\r\n - /swagger/**\r\n - /**/v2/api-docs\r\n - /**/*.js\r\n - /**/*.css\r\n - /**/*.png\r\n - /**/*.ico\r\n - /webjars/springfox-swagger-ui/**\r\n - /actuator/**\r\n - /druid/**\r\n - /home/**\r\n - /product/**\r\n - /wechat/h5/authorize\r\n - /wechat/h5/userInfo\r\n - /admin/login\r\n - /sso/login\r\n - /sso/getLoginCode\r\n - /sso/register\r\n - /sso/getAuthCode\r\n - /admin/register\r\n - /admin/info\r\n - /admin/logout\r\n - /minio/upload\r\n - /sso/loginPhone\r\n - /product/import\r\n - /big/**\r\n - /bigData/**\r\n - /first/upload\r\n - /doc.html\r\n - /sso/**\r\n - /wechat/**\r\n - /brand/**\r\n - /app/pay\r\n - /app/payResult\r\n\r\nqiniu:\r\n accessKey: FLWUJxiZY1_N-5d6J_jsdgbqyjVDUg86ghZHsaQW\r\n bucket: forestcloud\r\n path: http://fqn.hongweisoft.com/\r\n processName: \'null\'\r\n secretKey: So55w4fQ2dTQ6uMlWuUywmKG8ZTqVhWfr_3Ii7GI ', '9147a77928e089217a0f1f057a167a1f', '2020-11-16 14:43:45', '2020-11-16 14:43:46', NULL, '0:0:0:0:0:0:0:1', 'U', '');
  226. -- ----------------------------
  227. -- Table structure for permissions
  228. -- ----------------------------
  229. DROP TABLE IF EXISTS `permissions`;
  230. CREATE TABLE `permissions` (
  231. `role` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  232. `resource` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  233. `action` varchar(8) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  234. UNIQUE INDEX `uk_role_permission`(`role`, `resource`, `action`) USING BTREE
  235. ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
  236. -- ----------------------------
  237. -- Table structure for roles
  238. -- ----------------------------
  239. DROP TABLE IF EXISTS `roles`;
  240. CREATE TABLE `roles` (
  241. `username` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  242. `role` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  243. UNIQUE INDEX `idx_user_role`(`username`, `role`) USING BTREE
  244. ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
  245. -- ----------------------------
  246. -- Records of roles
  247. -- ----------------------------
  248. INSERT INTO `roles` VALUES ('nacos', 'ROLE_ADMIN');
  249. -- ----------------------------
  250. -- Table structure for tenant_capacity
  251. -- ----------------------------
  252. DROP TABLE IF EXISTS `tenant_capacity`;
  253. CREATE TABLE `tenant_capacity` (
  254. `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键ID',
  255. `tenant_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT 'Tenant ID',
  256. `quota` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '配额,0表示使用默认值',
  257. `usage` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '使用量',
  258. `max_size` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '单个配置大小上限,单位为字节,0表示使用默认值',
  259. `max_aggr_count` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '聚合子配置最大个数',
  260. `max_aggr_size` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '单个聚合数据的子配置大小上限,单位为字节,0表示使用默认值',
  261. `max_history_count` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '最大变更历史数量',
  262. `gmt_create` datetime(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '创建时间',
  263. `gmt_modified` datetime(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0) COMMENT '修改时间',
  264. PRIMARY KEY (`id`) USING BTREE,
  265. UNIQUE INDEX `uk_tenant_id`(`tenant_id`) USING BTREE
  266. ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = '租户容量信息表' ROW_FORMAT = Dynamic;
  267. -- ----------------------------
  268. -- Table structure for tenant_info
  269. -- ----------------------------
  270. DROP TABLE IF EXISTS `tenant_info`;
  271. CREATE TABLE `tenant_info` (
  272. `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
  273. `kp` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'kp',
  274. `tenant_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT '' COMMENT 'tenant_id',
  275. `tenant_name` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT '' COMMENT 'tenant_name',
  276. `tenant_desc` varchar(256) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'tenant_desc',
  277. `create_source` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'create_source',
  278. `gmt_create` bigint(20) NOT NULL COMMENT '创建时间',
  279. `gmt_modified` bigint(20) NOT NULL COMMENT '修改时间',
  280. PRIMARY KEY (`id`) USING BTREE,
  281. UNIQUE INDEX `uk_tenant_info_kptenantid`(`kp`, `tenant_id`) USING BTREE,
  282. INDEX `idx_tenant_id`(`tenant_id`) USING BTREE
  283. ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = 'tenant_info' ROW_FORMAT = Dynamic;
  284. -- ----------------------------
  285. -- Table structure for users
  286. -- ----------------------------
  287. DROP TABLE IF EXISTS `users`;
  288. CREATE TABLE `users` (
  289. `username` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  290. `password` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  291. `enabled` tinyint(1) NOT NULL,
  292. PRIMARY KEY (`username`) USING BTREE
  293. ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic;
  294. -- ----------------------------
  295. -- Records of users
  296. -- ----------------------------
  297. INSERT INTO `users` VALUES ('nacos', '$2a$10$EuWPZHzz32dJN7jexM34MOeYirDdFAZm2kuWj7VEOJhhZkDrxfvUu', 1);
  298. SET FOREIGN_KEY_CHECKS = 1;