浏览代码

sql

master
aobei 2 年前
父节点
当前提交
efe1930166
共有 3 个文件被更改,包括 833 次插入727 次删除
  1. +542
    -418
      febs-cloud/sql/febs_cloud_base_dev.sql
  2. +0
    -240
      febs-cloud/sql/febs_nacos.sql
  3. +291
    -0
      febs-cloud/sql/febs_nacos_dev.sql

+ 542
- 418
febs-cloud/sql/febs_cloud_base_dev.sql
文件差异内容过多而无法显示
查看文件


+ 0
- 240
febs-cloud/sql/febs_nacos.sql 查看文件

@ -1,309 +0,0 @@
/*
Navicat Premium Data Transfer
Source Server : localhost_mysql
Source Server Type : MySQL
Source Server Version : 50724
Source Host : localhost:3306
Source Schema : febs_nacos
Target Server Type : MySQL
Target Server Version : 50724
File Encoding : 65001
Date: 07/05/2020 15:19:28
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
DROP TABLE IF EXISTS `config_info`;
CREATE TABLE `config_info` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
`data_id` varchar(255) COLLATE utf8_bin NOT NULL COMMENT 'data_id',
`group_id` varchar(255) COLLATE utf8_bin DEFAULT NULL,
`content` longtext COLLATE utf8_bin NOT NULL COMMENT 'content',
`md5` varchar(32) COLLATE utf8_bin DEFAULT NULL COMMENT 'md5',
`gmt_create` datetime NOT NULL DEFAULT '2010-05-05 00:00:00' COMMENT '创建时间',
`gmt_modified` datetime NOT NULL DEFAULT '2010-05-05 00:00:00' COMMENT '修改时间',
`src_user` text COLLATE utf8_bin COMMENT 'source user',
`src_ip` varchar(20) COLLATE utf8_bin DEFAULT NULL COMMENT 'source ip',
`app_name` varchar(128) COLLATE utf8_bin DEFAULT NULL,
`tenant_id` varchar(128) COLLATE utf8_bin DEFAULT '' COMMENT '租户字段',
`c_desc` varchar(256) COLLATE utf8_bin DEFAULT NULL,
`c_use` varchar(64) COLLATE utf8_bin DEFAULT NULL,
`effect` varchar(64) COLLATE utf8_bin DEFAULT NULL,
`type` varchar(64) COLLATE utf8_bin DEFAULT NULL,
`c_schema` text COLLATE utf8_bin,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `uk_configinfo_datagrouptenant` (`data_id`,`group_id`,`tenant_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=103 DEFAULT CHARSET=utf8 COLLATE=utf8_bin ROW_FORMAT=DYNAMIC COMMENT='config_info';
BEGIN;
INSERT INTO `config_info` VALUES (8, 'febs-gateway.yaml', 'DEFAULT_GROUP', 'server:\r\n port: 8301\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n allowedHeaders: \"*\"\r\n allowCredentials: true\r\n routes:\r\n - id: FEBS-Auth-Social\r\n uri: lb://FEBS-Auth\r\n predicates:\r\n - Path=/auth/social/**\r\n filters:\r\n - name: Hystrix\r\n args:\r\n name: socialfallback\r\n fallbackUri: forward:/fallback/FEBS-Auth\r\n - id: FEBS-Auth\r\n uri: lb://FEBS-Auth\r\n predicates:\r\n - Path=/auth/**\r\n filters:\r\n - name: Hystrix\r\n args:\r\n name: authfallback\r\n fallbackUri: forward:/fallback/FEBS-Auth \r\n - id: FEBS-Server-System\r\n uri: lb://FEBS-Server-System\r\n predicates:\r\n - Path=/system/**\r\n filters:\r\n - name: Hystrix\r\n args:\r\n name: systemfallback\r\n fallbackUri: forward:/fallback/FEBS-Server-System\r\n - id: FEBS-Server-Generator\r\n uri: lb://FEBS-Server-Generator\r\n predicates:\r\n - Path=/generator/**\r\n filters:\r\n - name: Hystrix\r\n args:\r\n name: generatorfallback\r\n fallbackUri: forward:/fallback/FEBS-Server-Generator\r\n - id: FEBS-Server-Job\r\n uri: lb://FEBS-Server-Job\r\n predicates:\r\n - Path=/job/**\r\n filters:\r\n - name: Hystrix\r\n args:\r\n name: jobfallback\r\n fallbackUri: forward:/fallback/FEBS-Server-Job\r\n - id: FEBS-Server-test\r\n uri: lb://FEBS-Server-Test\r\n predicates:\r\n - Path=/test/**\r\n filters:\r\n - name: Hystrix\r\n args:\r\n name: testfallback\r\n fallbackUri: forward:/fallback/FEBS-Server-Test\r\n loadbalancer:\r\n use404: true\r\n default-filters:\r\n - StripPrefix=1\r\n - FebsDocGatewayHeaderFilter\r\n autoconfigure:\r\n exclude: org.springframework.boot.autoconfigure.mongo.MongoReactiveAutoConfiguration,org.springframework.boot.autoconfigure.data.mongo.MongoReactiveRepositoriesAutoConfiguration,org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration\r\n \r\n# 网关增强配置\r\n # data:\r\n # mongodb:\r\n # host: ${mongo.url}\r\n # port: 27017\r\n # database: febs_cloud_route\r\n\r\n redis:\r\n database: 3\r\n host: ${redis.url}\r\n port: 6379\r\n lettuce:\r\n pool:\r\n min-idle: 8\r\n max-idle: 500\r\n max-active: 2000\r\n max-wait: 10000\r\n timeout: 5000\r\n\r\n# 网关增强配置\r\nfebs:\r\n gateway:\r\n enhance: false\r\n jwt:\r\n secret: 123456\r\n expiration: 36000\r\n doc:\r\n gateway:\r\n enable: true\r\n resources: \"FEBS-Server-System,FEBS-Server-Test,FEBS-Auth,FEBS-Server-Generator,FEBS-Server-Job\"\r\n\r\nhystrix:\r\n command:\r\n default:\r\n execution:\r\n isolation:\r\n thread:\r\n timeoutInMilliseconds: 10000\r\n socialfallback:\r\n execution:\r\n isolation:\r\n thread:\r\n timeoutInMilliseconds: 60000 \r\n\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n\r\nmanagement:\r\n endpoint:\r\n health:\r\n show-details: ALWAYS\r\n endpoints:\r\n web:\r\n exposure:\r\n include: health,info,gateway\r\n\r\n', 'b8834a3889e78dda34d04dddba0e4b58', '2019-09-18 10:37:02', '2020-04-19 10:48:42', NULL, '127.0.0.1', '', '', 'FEBS-Gateway微服务配置', 'null', 'null', 'yaml', 'null');
INSERT INTO `config_info` VALUES (24, 'febs-server-test.yaml', 'DEFAULT_GROUP', 'server:\r\n port: 8202\r\nspring:\r\n datasource:\r\n dynamic:\r\n p6spy: true\r\n hikari:\r\n connection-timeout: 30000\r\n max-lifetime: 1800000\r\n max-pool-size: 15\r\n min-idle: 5\r\n connection-test-query: select 1\r\n pool-name: FebsHikariCP\r\n primary: base\r\n datasource:\r\n base:\r\n username: root\r\n password: 123456\r\n driver-class-name: com.mysql.cj.jdbc.Driver\r\n url: jdbc:mysql://${mysql.url}:3306/febs_cloud_base?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2b8\r\n boot:\r\n admin:\r\n client:\r\n url: http://${febs-admin}:8401\r\n username: febs\r\n password: 123456\r\n instance:\r\n prefer-ip: true\r\n\r\nfeign:\r\n hystrix:\r\n enabled: true\r\n\r\nhystrix:\r\n shareSecurityContext: true\r\n command:\r\n default:\r\n execution:\r\n isolation:\r\n thread:\r\n timeoutInMilliseconds: 3000\r\nmybatis-plus:\r\n type-aliases-package: cc.mrbird.febs.common.core.entity.system\r\n mapper-locations: classpath:mapper/*.xml\r\n configuration:\r\n jdbc-type-for-null: null\r\n global-config:\r\n banner: false\r\n\r\nsecurity:\r\n oauth2:\r\n resource:\r\n id: ${spring.application.name}\r\n user-info-uri: http://${febs-gateway}:8301/auth/user\r\n\r\ntx-lcn:\r\n client:\r\n manager-address: ${febs-tx-manager}:8888\r\n\r\ninfo:\r\n app:\r\n name: ${spring.application.name}\r\n description: \"@project.description@\"\r\n version: \"@project.version@\"\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\nfebs:\r\n doc:\r\n enable: true\r\n title: ${spring.application.name}文档\r\n base-package: cc.mrbird.febs.server.test.controller\r\n description: ${febs.doc.title}\r\n name: MrBird\r\n email: 852252810@qq.com\r\n url: https://mrbird.cc\r\n version: 2.2-RELEASE\r\n cloud:\r\n security:\r\n enable: true\r\n anon-uris: /actuator/**,/v2/api-docs,/v2/api-docs-ext', 'ce0dcf61f4921751f9cf6926aa2f0f88', '2019-09-19 10:17:25', '2020-04-18 10:10:50', NULL, '0:0:0:0:0:0:0:1', '', '', 'FEBS-Server-Test微服务配置', 'null', 'null', 'yaml', 'null');
INSERT INTO `config_info` VALUES (29, 'febs-tx-manager.yaml', 'DEFAULT_GROUP', 'server:\r\n port: 8501\r\nspring:\r\n boot:\r\n admin:\r\n client:\r\n url: http://${febs-admin}:8401\r\n username: febs\r\n password: 123456\r\n instance:\r\n prefer-ip: true\r\n datasource:\r\n driver-class-name: com.mysql.cj.jdbc.Driver\r\n url: jdbc:mysql://${mysql.url}:3306/febs_cloud_base?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2b8\r\n username: root\r\n password: 123456\r\n redis:\r\n database: 0\r\n host: ${redis.url}\r\n port: 6379\r\n lettuce:\r\n pool:\r\n min-idle: 8\r\n max-idle: 500\r\n max-active: 2000\r\n max-wait: 10000\r\n timeout: 5000\r\n\r\ninfo:\r\n app:\r\n name: ${spring.application.name}\r\n description: \"@project.description@\"\r\n version: \"@project.version@\"\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\n\r\ntx-lcn:\r\n manager:\r\n host: 0.0.0.0\r\n # TM监听Socket端口.\r\n port: 8888\r\n # TM控制台密码\r\n admin-key: 123456\r\n logger:\r\n # 开启日志记录\r\n enabled: true\r\n driver-class-name: ${spring.datasource.driver-class-name}\r\n jdbc-url: ${spring.datasource.url}\r\n username: ${spring.datasource.username}\r\n password: ${spring.datasource.password}', 'd0650331753a7507ca99d431c3face17', '2020-04-16 09:12:35', '2020-04-18 10:11:24', NULL, '0:0:0:0:0:0:0:1', '', '', 'null', 'null', 'null', 'yaml', 'null');
INSERT INTO `config_info` VALUES (33, 'febs-server-generator.yaml', 'DEFAULT_GROUP', 'server:\r\n port: 8203\r\nspring:\r\n datasource:\r\n dynamic:\r\n p6spy: true\r\n hikari:\r\n connection-timeout: 30000\r\n max-lifetime: 1800000\r\n max-pool-size: 15\r\n min-idle: 5\r\n connection-test-query: select 1\r\n pool-name: FebsHikariCP\r\n primary: base\r\n datasource:\r\n base:\r\n username: root\r\n password: 123456\r\n driver-class-name: com.mysql.cj.jdbc.Driver\r\n url: jdbc:mysql://${mysql.url}:3306/febs_cloud_base?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2b8\r\n boot:\r\n admin:\r\n client:\r\n url: http://${febs-admin}:8401\r\n username: febs\r\n password: 123456\r\n instance:\r\n prefer-ip: true\r\n\r\nmybatis-plus:\r\n type-aliases-package: cc.mrbird.febs.common.core.entity.system\r\n mapper-locations: classpath:mapper/*.xml\r\n configuration:\r\n jdbc-type-for-null: null\r\n global-config:\r\n banner: false\r\n\r\nsecurity:\r\n oauth2:\r\n resource:\r\n id: ${spring.application.name}\r\n user-info-uri: http://${febs-gateway}:8301/auth/user\r\n\r\ninfo:\r\n app:\r\n name: ${spring.application.name}\r\n description: \"@project.description@\"\r\n version: \"@project.version@\"\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\n\r\nfebs:\r\n doc:\r\n enable: true\r\n title: ${spring.application.name}文档\r\n base-package: cc.mrbird.febs.server.generator.controller\r\n description: ${febs.doc.title}\r\n name: MrBird\r\n email: 852252810@qq.com\r\n url: https://mrbird.cc\r\n version: 2.2-RELEASE\r\n cloud:\r\n security:\r\n enable: true\r\n anon-uris: /actuator/**,/v2/api-docs,/v2/api-docs-ext', 'e6cc51aa230488d02a166b7de2a2e99f', '2020-04-16 11:03:11', '2020-04-19 10:55:06', NULL, '127.0.0.1', '', '', 'null', 'null', 'null', 'yaml', 'null');
INSERT INTO `config_info` VALUES (35, 'febs-server-job.yaml', 'DEFAULT_GROUP', 'server:\r\n port: 8204\r\nspring:\r\n jackson:\r\n date-format: yyyy-MM-dd HH:mm:ss\r\n time-zone: GMT+8\r\n datasource:\r\n dynamic:\r\n # 是否开启 SQL日志输出,生产环境建议关闭,有性能损耗\r\n p6spy: true\r\n hikari:\r\n connection-timeout: 30000\r\n max-lifetime: 1800000\r\n max-pool-size: 15\r\n min-idle: 5\r\n connection-test-query: select 1\r\n pool-name: FebsHikariCP\r\n # 配置默认数据源\r\n primary: base\r\n datasource:\r\n # 数据源-1,名称为 base\r\n base:\r\n username: root\r\n password: 123456\r\n driver-class-name: com.mysql.cj.jdbc.Driver\r\n url: jdbc:mysql://${mysql.url}:3306/febs_cloud_base?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2b8\r\n # 数据源-2,名称为 job\r\n job:\r\n username: root\r\n password: 123456\r\n driver-class-name: com.mysql.cj.jdbc.Driver\r\n url: jdbc:mysql://${mysql.url}:3306/febs_cloud_job?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2b8\r\n\r\n boot:\r\n admin:\r\n client:\r\n url: http://${febs-admin}:8401\r\n username: febs\r\n password: 123456\r\n instance:\r\n prefer-ip: true\r\n\r\nmybatis-plus:\r\n type-aliases-package: cc.mrbird.febs.server.job.entity\r\n mapper-locations: classpath:mapper/*.xml\r\n configuration:\r\n jdbc-type-for-null: null\r\n global-config:\r\n banner: false\r\n\r\nsecurity:\r\n oauth2:\r\n resource:\r\n id: ${spring.application.name}\r\n user-info-uri: http://${febs-gateway}:8301/auth/user\r\n\r\ninfo:\r\n app:\r\n name: ${spring.application.name}\r\n description: \"@project.description@\"\r\n version: \"@project.version@\"\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\nfebs:\r\n doc:\r\n enable: true\r\n title: ${spring.application.name}文档\r\n base-package: cc.mrbird.febs.server.job.controller\r\n description: ${febs.doc.title}\r\n name: MrBird\r\n email: 852252810@qq.com\r\n url: https://mrbird.cc\r\n version: 2.2-RELEASE\r\n cloud:\r\n security:\r\n enable: true\r\n anon-uris: /actuator/**,/v2/api-docs,/v2/api-docs-ext', 'bc5a3f62d3b16f47f4debc5e3ffc097f', '2020-04-16 11:31:54', '2020-04-19 10:55:21', NULL, '127.0.0.1', '', '', 'null', 'null', 'null', 'yaml', 'null');
INSERT INTO `config_info` VALUES (38, 'febs-admin.yaml', 'DEFAULT_GROUP', 'server:\n port: 8401\n\nspring:\n security:\n user:\n name: febs\n password: 123456\n boot:\n admin:\n ui:\n title: ${spring.application.name}', '31a6f472776c2d374593f0ded91004af', '2020-04-16 13:56:54', '2020-04-16 13:56:54', NULL, '218.104.225.80', '', '', NULL, NULL, NULL, 'yaml', NULL);
INSERT INTO `config_info` VALUES (82, 'febs-server-system.yaml', 'DEFAULT_GROUP', 'server:\r\n port: 8201\r\n \r\nspring:\r\n aop:\r\n proxy-target-class: true\r\n jackson:\r\n date-format: yyyy-MM-dd HH:mm:ss\r\n time-zone: GMT+8\r\n boot:\r\n admin:\r\n client:\r\n url: http://${febs-admin}:8401\r\n username: febs\r\n password: 123456\r\n instance:\r\n prefer-ip: true\r\n freemarker:\r\n check-template-location: false\r\n\r\n datasource:\r\n dynamic:\r\n p6spy: true\r\n hikari:\r\n connection-timeout: 30000\r\n max-lifetime: 1800000\r\n max-pool-size: 15\r\n min-idle: 5\r\n connection-test-query: select 1\r\n pool-name: FebsHikariCP\r\n primary: base\r\n datasource:\r\n base:\r\n username: root\r\n password: 123456\r\n driver-class-name: com.mysql.cj.jdbc.Driver\r\n url: jdbc:mysql://${mysql.url}:3306/febs_cloud_base?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2b8\r\n\r\nmybatis-plus:\r\n type-aliases-package: cc.mrbird.febs.common.core.entity.system\r\n mapper-locations: classpath:mapper/*.xml\r\n configuration:\r\n jdbc-type-for-null: null\r\n global-config:\r\n banner: false\r\nsecurity:\r\n oauth2:\r\n resource:\r\n id: ${spring.application.name}\r\n user-info-uri: http://${febs-gateway}:8301/auth/user\r\n\r\ninfo:\r\n app:\r\n name: ${spring.application.name}\r\n description: \"@project.description@\"\r\n version: \"@project.version@\"\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\nfebs:\r\n doc:\r\n enable: true\r\n title: ${spring.application.name}文档\r\n base-package: cc.mrbird.febs.server.system.controller\r\n description: ${febs.doc.title}\r\n name: MrBird\r\n email: 852252810@qq.com\r\n url: https://mrbird.cc\r\n version: 2.2-RELEASE\r\n cloud:\r\n security:\r\n enable: true\r\n anon-uris: /actuator/**,/v2/api-docs,/v2/api-docs-ext\r\ntx-lcn:\r\n client:\r\n manager-address: ${febs-tx-manager}:8888', 'b6952e120408775e7494f7e4f8bd7047', '2020-04-18 10:00:56', '2020-04-19 10:54:40', NULL, '127.0.0.1', '', '', 'FEBS-Server-System微服务配置', 'null', 'null', 'yaml', 'null');
INSERT INTO `config_info` VALUES (83, 'febs-auth.yaml', 'DEFAULT_GROUP', 'server:\r\n port: 8101\r\nspring:\r\n datasource:\r\n dynamic:\r\n hikari:\r\n connection-timeout: 30000\r\n max-lifetime: 1800000\r\n max-pool-size: 15\r\n min-idle: 5\r\n connection-test-query: select 1\r\n pool-name: FebsHikariCP\r\n primary: base\r\n datasource:\r\n base:\r\n username: root\r\n password: 123456\r\n driver-class-name: com.mysql.cj.jdbc.Driver\r\n url: jdbc:mysql://${mysql.url}:3306/febs_cloud_base?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2b8\r\n\r\n jackson:\r\n date-format: yyyy-MM-dd HH:mm:ss\r\n time-zone: GMT+8\r\n boot:\r\n admin:\r\n client:\r\n url: http://${febs-admin}:8401\r\n username: febs\r\n password: 123456\r\n instance:\r\n prefer-ip: true\r\n\r\n redis:\r\n database: 0\r\n host: ${redis.url}\r\n port: 6379\r\n lettuce:\r\n pool:\r\n min-idle: 8\r\n max-idle: 500\r\n max-active: 2000\r\n max-wait: 10000\r\n timeout: 5000\r\nmybatis-plus:\r\n type-aliases-package: cc.mrbird.febs.common.core.entity.system\r\n mapper-locations: classpath:mapper/*.xml\r\n configuration:\r\n jdbc-type-for-null: null\r\n global-config:\r\n banner: false\r\ninfo:\r\n app:\r\n name: ${spring.application.name}\r\n description: \"@project.description@\"\r\n version: \"@project.version@\"\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\n\r\njustauth:\r\n enabled: true\r\n type:\r\n github:\r\n client-id: \r\n client-secret: \r\n redirect-uri: \r\n gitee:\r\n client-id: \r\n client-secret: \r\n redirect-uri: \r\n tencent_cloud:\r\n client-id: \r\n client-secret: \r\n redirect-uri: \r\n dingtalk:\r\n client-id: \r\n client-secret: \r\n redirect-uri: \r\n qq:\r\n client-id: \r\n client-secret: \r\n redirect-uri: \r\n microsoft:\r\n client-id: \r\n client-secret: \r\n redirect-uri: \r\n cache:\r\n type: redis\r\n prefix: \'FEBS::CLOUD::SOCIAL::STATE::\'\r\n timeout: 1h\r\n\r\nfebs:\r\n frontUrl: \'http://localhost:9527\'\r\n doc:\r\n enable: true\r\n title: ${spring.application.name}文档\r\n base-package: cc.mrbird.febs.auth.controller\r\n description: ${febs.doc.title}\r\n name: MrBird\r\n email: 852252810@qq.com\r\n url: https://mrbird.cc\r\n version: 2.2-RELEASE\r\n cloud:\r\n security:\r\n enable: true\r\n only-fetch-by-gateway: false\r\n anon-uris: /actuator/**,/captcha,/social/**,/v2/api-docs,/v2/api-docs-ext,/login,/resource/**', '54c759d7da87b5c323593185e9c87b90', '2020-04-18 10:01:55', '2020-05-07 15:14:54', NULL, '0:0:0:0:0:0:0:1', '', '', 'FEBS-Auth微服务配置', 'null', 'null', 'yaml', 'null');
COMMIT;
DROP TABLE IF EXISTS `config_info_aggr`;
CREATE TABLE `config_info_aggr` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
`data_id` varchar(255) COLLATE utf8_bin NOT NULL COMMENT 'data_id',
`group_id` varchar(255) COLLATE utf8_bin NOT NULL COMMENT 'group_id',
`datum_id` varchar(255) COLLATE utf8_bin NOT NULL COMMENT 'datum_id',
`content` longtext COLLATE utf8_bin NOT NULL COMMENT '内容',
`gmt_modified` datetime NOT NULL COMMENT '修改时间',
`app_name` varchar(128) COLLATE utf8_bin DEFAULT NULL,
`tenant_id` varchar(128) COLLATE utf8_bin DEFAULT '' COMMENT '租户字段',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `uk_configinfoaggr_datagrouptenantdatum` (`data_id`,`group_id`,`tenant_id`,`datum_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin ROW_FORMAT=DYNAMIC COMMENT='增加租户字段';
BEGIN;
COMMIT;
DROP TABLE IF EXISTS `config_info_beta`;
CREATE TABLE `config_info_beta` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
`data_id` varchar(255) COLLATE utf8_bin NOT NULL COMMENT 'data_id',
`group_id` varchar(128) COLLATE utf8_bin NOT NULL COMMENT 'group_id',
`app_name` varchar(128) COLLATE utf8_bin DEFAULT NULL COMMENT 'app_name',
`content` longtext COLLATE utf8_bin NOT NULL COMMENT 'content',
`beta_ips` varchar(1024) COLLATE utf8_bin DEFAULT NULL COMMENT 'betaIps',
`md5` varchar(32) COLLATE utf8_bin DEFAULT NULL COMMENT 'md5',
`gmt_create` datetime NOT NULL DEFAULT '2010-05-05 00:00:00' COMMENT '创建时间',
`gmt_modified` datetime NOT NULL DEFAULT '2010-05-05 00:00:00' COMMENT '修改时间',
`src_user` text COLLATE utf8_bin COMMENT 'source user',
`src_ip` varchar(20) COLLATE utf8_bin DEFAULT NULL COMMENT 'source ip',
`tenant_id` varchar(128) COLLATE utf8_bin DEFAULT '' COMMENT '租户字段',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `uk_configinfobeta_datagrouptenant` (`data_id`,`group_id`,`tenant_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin ROW_FORMAT=DYNAMIC COMMENT='config_info_beta';
BEGIN;
COMMIT;
DROP TABLE IF EXISTS `config_info_tag`;
CREATE TABLE `config_info_tag` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
`data_id` varchar(255) COLLATE utf8_bin NOT NULL COMMENT 'data_id',
`group_id` varchar(128) COLLATE utf8_bin NOT NULL COMMENT 'group_id',
`tenant_id` varchar(128) COLLATE utf8_bin DEFAULT '' COMMENT 'tenant_id',
`tag_id` varchar(128) COLLATE utf8_bin NOT NULL COMMENT 'tag_id',
`app_name` varchar(128) COLLATE utf8_bin DEFAULT NULL COMMENT 'app_name',
`content` longtext COLLATE utf8_bin NOT NULL COMMENT 'content',
`md5` varchar(32) COLLATE utf8_bin DEFAULT NULL COMMENT 'md5',
`gmt_create` datetime NOT NULL DEFAULT '2010-05-05 00:00:00' COMMENT '创建时间',
`gmt_modified` datetime NOT NULL DEFAULT '2010-05-05 00:00:00' COMMENT '修改时间',
`src_user` text COLLATE utf8_bin COMMENT 'source user',
`src_ip` varchar(20) COLLATE utf8_bin DEFAULT NULL COMMENT 'source ip',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `uk_configinfotag_datagrouptenanttag` (`data_id`,`group_id`,`tenant_id`,`tag_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin ROW_FORMAT=DYNAMIC COMMENT='config_info_tag';
BEGIN;
COMMIT;
DROP TABLE IF EXISTS `config_tags_relation`;
CREATE TABLE `config_tags_relation` (
`id` bigint(20) NOT NULL COMMENT 'id',
`tag_name` varchar(128) COLLATE utf8_bin NOT NULL COMMENT 'tag_name',
`tag_type` varchar(64) COLLATE utf8_bin DEFAULT NULL COMMENT 'tag_type',
`data_id` varchar(255) COLLATE utf8_bin NOT NULL COMMENT 'data_id',
`group_id` varchar(128) COLLATE utf8_bin NOT NULL COMMENT 'group_id',
`tenant_id` varchar(128) COLLATE utf8_bin DEFAULT '' COMMENT 'tenant_id',
`nid` bigint(20) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`nid`) USING BTREE,
UNIQUE KEY `uk_configtagrelation_configidtag` (`id`,`tag_name`,`tag_type`) USING BTREE,
KEY `idx_tenant_id` (`tenant_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin ROW_FORMAT=DYNAMIC COMMENT='config_tag_relation';
BEGIN;
COMMIT;
DROP TABLE IF EXISTS `group_capacity`;
CREATE TABLE `group_capacity` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键ID',
`group_id` varchar(128) COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT 'Group ID,空字符表示整个集群',
`quota` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '配额,0表示使用默认值',
`usage` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '使用量',
`max_size` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '单个配置大小上限,单位为字节,0表示使用默认值',
`max_aggr_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '聚合子配置最大个数,,0表示使用默认值',
`max_aggr_size` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '单个聚合数据的子配置大小上限,单位为字节,0表示使用默认值',
`max_history_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '最大变更历史数量',
`gmt_create` datetime NOT NULL DEFAULT '2010-05-05 00:00:00' COMMENT '创建时间',
`gmt_modified` datetime NOT NULL DEFAULT '2010-05-05 00:00:00' COMMENT '修改时间',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `uk_group_id` (`group_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin ROW_FORMAT=DYNAMIC COMMENT='集群、各Group容量信息表';
BEGIN;
COMMIT;
DROP TABLE IF EXISTS `his_config_info`;
CREATE TABLE `his_config_info` (
`id` bigint(64) unsigned NOT NULL,
`nid` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`data_id` varchar(255) COLLATE utf8_bin NOT NULL,
`group_id` varchar(128) COLLATE utf8_bin NOT NULL,
`app_name` varchar(128) COLLATE utf8_bin DEFAULT NULL COMMENT 'app_name',
`content` longtext COLLATE utf8_bin NOT NULL,
`md5` varchar(32) COLLATE utf8_bin DEFAULT NULL,
`gmt_create` datetime NOT NULL DEFAULT '2010-05-05 00:00:00',
`gmt_modified` datetime NOT NULL DEFAULT '2010-05-05 00:00:00',
`src_user` text COLLATE utf8_bin,
`src_ip` varchar(20) COLLATE utf8_bin DEFAULT NULL,
`op_type` char(10) COLLATE utf8_bin DEFAULT NULL,
`tenant_id` varchar(128) COLLATE utf8_bin DEFAULT '' COMMENT '租户字段',
PRIMARY KEY (`nid`) USING BTREE,
KEY `idx_gmt_create` (`gmt_create`) USING BTREE,
KEY `idx_gmt_modified` (`gmt_modified`) USING BTREE,
KEY `idx_did` (`data_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=86 DEFAULT CHARSET=utf8 COLLATE=utf8_bin ROW_FORMAT=DYNAMIC COMMENT='多租户改造';
BEGIN;
INSERT INTO `his_config_info` VALUES (83, 85, 'febs-auth.yaml', 'DEFAULT_GROUP', '', 'server:\r\n port: 8101\r\nspring:\r\n datasource:\r\n dynamic:\r\n hikari:\r\n connection-timeout: 30000\r\n max-lifetime: 1800000\r\n max-pool-size: 15\r\n min-idle: 5\r\n connection-test-query: select 1\r\n pool-name: FebsHikariCP\r\n primary: base\r\n datasource:\r\n base:\r\n username: root\r\n password: 123456\r\n driver-class-name: com.mysql.cj.jdbc.Driver\r\n url: jdbc:mysql://${mysql.url}:3306/febs_cloud_base?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2b8\r\n\r\n jackson:\r\n date-format: yyyy-MM-dd HH:mm:ss\r\n time-zone: GMT+8\r\n boot:\r\n admin:\r\n client:\r\n url: http://${febs-admin}:8401\r\n username: febs\r\n password: 123456\r\n instance:\r\n prefer-ip: true\r\n\r\n redis:\r\n database: 0\r\n host: ${redis.url}\r\n port: 6379\r\n lettuce:\r\n pool:\r\n min-idle: 8\r\n max-idle: 500\r\n max-active: 2000\r\n max-wait: 10000\r\n timeout: 5000\r\nmybatis-plus:\r\n type-aliases-package: cc.mrbird.febs.common.core.entity.system\r\n mapper-locations: classpath:mapper/*.xml\r\n configuration:\r\n jdbc-type-for-null: null\r\n global-config:\r\n banner: false\r\ninfo:\r\n app:\r\n name: ${spring.application.name}\r\n description: \"@project.description@\"\r\n version: \"@project.version@\"\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\n\r\njustauth:\r\n enabled: true\r\n type:\r\n github:\r\n client-id: \r\n client-secret: \r\n redirect-uri: \r\n gitee:\r\n client-id: \r\n client-secret: \r\n redirect-uri: \r\n tencent_cloud:\r\n client-id: \r\n client-secret: \r\n redirect-uri: \r\n dingtalk:\r\n client-id: \r\n client-secret: \r\n redirect-uri: \r\n qq:\r\n client-id: \r\n client-secret: \r\n redirect-uri: \r\n microsoft:\r\n client-id: \r\n client-secret: \r\n redirect-uri: \r\n cache:\r\n type: redis\r\n prefix: \'FEBS::CLOUD::SOCIAL::STATE::\'\r\n timeout: 1h\r\n\r\nfebs:\r\n frontUrl: \'http://localhost:9527\'\r\n doc:\r\n enable: true\r\n title: ${spring.application.name}文档\r\n base-package: cc.mrbird.febs.auth.controller\r\n description: ${febs.doc.title}\r\n name: MrBird\r\n email: 852252810@qq.com\r\n url: https://mrbird.cc\r\n version: 2.2-RELEASE\r\n cloud:\r\n security:\r\n enable: true\r\n anon-uris: /actuator/**,/captcha,/social/**,/v2/api-docs,/v2/api-docs-ext', '7b15f74be22544569e21900500d08703', '2010-05-05 00:00:00', '2020-05-07 15:14:54', NULL, '0:0:0:0:0:0:0:1', 'U', '');
COMMIT;
DROP TABLE IF EXISTS `roles`;
CREATE TABLE `roles` (
`username` varchar(50) NOT NULL,
`role` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
BEGIN;
INSERT INTO `roles` VALUES ('febs', 'ROLE_ADMIN');
COMMIT;
DROP TABLE IF EXISTS `tenant_capacity`;
CREATE TABLE `tenant_capacity` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键ID',
`tenant_id` varchar(128) COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT 'Tenant ID',
`quota` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '配额,0表示使用默认值',
`usage` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '使用量',
`max_size` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '单个配置大小上限,单位为字节,0表示使用默认值',
`max_aggr_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '聚合子配置最大个数',
`max_aggr_size` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '单个聚合数据的子配置大小上限,单位为字节,0表示使用默认值',
`max_history_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '最大变更历史数量',
`gmt_create` datetime NOT NULL DEFAULT '2010-05-05 00:00:00' COMMENT '创建时间',
`gmt_modified` datetime NOT NULL DEFAULT '2010-05-05 00:00:00' COMMENT '修改时间',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `uk_tenant_id` (`tenant_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin ROW_FORMAT=DYNAMIC COMMENT='租户容量信息表';
BEGIN;
COMMIT;
DROP TABLE IF EXISTS `tenant_info`;
CREATE TABLE `tenant_info` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
`kp` varchar(128) COLLATE utf8_bin NOT NULL COMMENT 'kp',
`tenant_id` varchar(128) COLLATE utf8_bin DEFAULT '' COMMENT 'tenant_id',
`tenant_name` varchar(128) COLLATE utf8_bin DEFAULT '' COMMENT 'tenant_name',
`tenant_desc` varchar(256) COLLATE utf8_bin DEFAULT NULL COMMENT 'tenant_desc',
`create_source` varchar(32) COLLATE utf8_bin DEFAULT NULL COMMENT 'create_source',
`gmt_create` bigint(20) NOT NULL COMMENT '创建时间',
`gmt_modified` bigint(20) NOT NULL COMMENT '修改时间',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE KEY `uk_tenant_info_kptenantid` (`kp`,`tenant_id`) USING BTREE,
KEY `idx_tenant_id` (`tenant_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin ROW_FORMAT=DYNAMIC COMMENT='tenant_info';
BEGIN;
COMMIT;
DROP TABLE IF EXISTS `users`;
CREATE TABLE `users` (
`username` varchar(50) NOT NULL,
`password` varchar(500) NOT NULL,
`enabled` tinyint(1) NOT NULL,
PRIMARY KEY (`username`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
BEGIN;
INSERT INTO `users` VALUES ('febs', '$2a$10$NJRJ.JUIUVX5suXNFRuOFezX5nzQLxl86OyMNnA7yxH1zr94H/gBS', 1);
COMMIT;
DROP TABLE IF EXISTS `permissions`;
CREATE TABLE `permissions` (
`role` varchar(50) NOT NULL,
`resource` varchar(512) NOT NULL,
`action` varchar(8) NOT NULL,
UNIQUE KEY `uk_role_permission` (`role`,`resource`,`action`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
SET FOREIGN_KEY_CHECKS = 1;

+ 291
- 0
febs-cloud/sql/febs_nacos_dev.sql 查看文件

@ -0,0 +1,291 @@
/*
Navicat Premium Data Transfer
Source Server : 57
Source Server Type : MySQL
Source Server Version : 50728
Source Host : 192.168.11.57:3306
Source Schema : febs_nacos_dev
Target Server Type : MySQL
Target Server Version : 50728
File Encoding : 65001
Date: 08/03/2022 14:22:18
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for config_info
-- ----------------------------
DROP TABLE IF EXISTS `config_info`;
CREATE TABLE `config_info` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
`data_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'data_id',
`group_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
`content` longtext CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'content',
`md5` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'md5',
`gmt_create` datetime(0) NOT NULL DEFAULT '2010-05-05 00:00:00' COMMENT '创建时间',
`gmt_modified` datetime(0) NOT NULL DEFAULT '2010-05-05 00:00:00' COMMENT '修改时间',
`src_user` text CHARACTER SET utf8 COLLATE utf8_bin NULL COMMENT 'source user',
`src_ip` varchar(20) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'source ip',
`app_name` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
`tenant_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT '' COMMENT '租户字段',
`c_desc` varchar(256) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
`c_use` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
`effect` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
`type` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
`c_schema` text CHARACTER SET utf8 COLLATE utf8_bin NULL,
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uk_configinfo_datagrouptenant`(`data_id`, `group_id`, `tenant_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 120 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = 'config_info' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of config_info
-- ----------------------------
INSERT INTO `config_info` VALUES (104, 'admin.yaml', 'DEFAULT_GROUP', 'server:\n port: 9003\n\nspring:\n security:\n user:\n name: febs\n password: 123456\n boot:\n admin:\n ui:\n title: ${spring.application.name}', '7cc7356958a03ddf665bfcc377647576', '2021-06-25 14:30:58', '2021-06-25 14:30:58', NULL, '0:0:0:0:0:0:0:1', '', '3eb2a58b-d98b-40e9-9329-aae4dfac40b9', NULL, NULL, NULL, 'yaml', NULL);
INSERT INTO `config_info` VALUES (105, 'auth.yaml', 'DEFAULT_GROUP', 'server:\r\n port: 9002\r\nspring:\r\n datasource:\r\n dynamic:\r\n hikari:\r\n connection-timeout: 30000\r\n max-lifetime: 1800000\r\n max-pool-size: 15\r\n min-idle: 5\r\n connection-test-query: select 1\r\n pool-name: FebsHikariCP\r\n primary: base\r\n datasource:\r\n base:\r\n username: root\r\n password: root\r\n driver-class-name: com.mysql.cj.jdbc.Driver\r\n url: jdbc:mysql://${mysql.url}:3306/target_base?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2b8\r\n\r\n jackson:\r\n date-format: yyyy-MM-dd HH:mm:ss\r\n time-zone: GMT+8\r\n boot:\r\n admin:\r\n client:\r\n url: http://${febs-admin}:9003\r\n username: febs\r\n password: 123456\r\n instance:\r\n prefer-ip: true\r\n\r\n redis:\r\n database: 10\r\n host: ${redis.url}\r\n port: 6379\r\n password: redis\r\n lettuce:\r\n pool:\r\n min-idle: 8\r\n max-idle: 500\r\n max-active: 2000\r\n max-wait: 10000\r\n timeout: 5000\r\nmybatis-plus:\r\n type-aliases-package: cc.mrbird.febs.common.core.entity.system\r\n mapper-locations: classpath:mapper/*.xml\r\n configuration:\r\n jdbc-type-for-null: null\r\n global-config:\r\n banner: false\r\ninfo:\r\n app:\r\n name: ${spring.application.name}\r\n description: \"@project.description@\"\r\n version: \"@project.version@\"\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\n\r\njustauth:\r\n enabled: true\r\n type:\r\n github:\r\n client-id: \r\n client-secret: \r\n redirect-uri: \r\n gitee:\r\n client-id: \r\n client-secret: \r\n redirect-uri: \r\n tencent_cloud:\r\n client-id: \r\n client-secret: \r\n redirect-uri: \r\n dingtalk:\r\n client-id: \r\n client-secret: \r\n redirect-uri: \r\n qq:\r\n client-id: \r\n client-secret: \r\n redirect-uri: \r\n microsoft:\r\n client-id: \r\n client-secret: \r\n redirect-uri: \r\n cache:\r\n type: redis\r\n prefix: \'FEBS::CLOUD::SOCIAL::STATE::\'\r\n timeout: 1h\r\n\r\nfebs:\r\n frontUrl: \'http://192.168.11.193:9528\'\r\n doc:\r\n enable: true\r\n title: ${spring.application.name}文档\r\n base-package: cc.mrbird.febs.auth.controller\r\n description: ${febs.doc.title}\r\n name: HNII-DEV\r\n email: \r\n url: https://\r\n version: 2.0-RELEASE\r\n cloud:\r\n security:\r\n enable: true\r\n anon-uris: /actuator/**,/captcha,/social/**,/v2/api-docs,/v2/api-docs-ext,/fastdfs/download\r\nunifiedAuth: false ', '93b6b4505387b27c5b46ffd22bff77f5', '2021-06-25 14:30:58', '2021-11-10 15:50:07', NULL, '192.168.11.183', '', '3eb2a58b-d98b-40e9-9329-aae4dfac40b9', 'null', 'null', 'null', 'yaml', 'null');
INSERT INTO `config_info` VALUES (106, 'gateway.yaml', 'DEFAULT_GROUP', 'server:\r\n port: 9001\r\nspring:\r\n cloud:\r\n gateway:\r\n globalcors:\r\n corsConfigurations:\r\n \'[/**]\':\r\n allowedOrigins: \"*\"\r\n allowedMethods: \"*\"\r\n allowedHeaders: \"*\"\r\n allowCredentials: true\r\n routes:\r\n - id: Target-Auth\r\n uri: lb://Target-Auth\r\n predicates:\r\n - Path=/auth/**\r\n filters:\r\n - name: Hystrix\r\n args:\r\n name: authfallback\r\n fallbackUri: forward:/fallback/FEBS-Auth \r\n - id: Target-Server-System\r\n uri: lb://Target-Server-System\r\n predicates:\r\n - Path=/system/**\r\n filters:\r\n - name: Hystrix\r\n args:\r\n name: systemfallback\r\n fallbackUri: forward:/fallback/FEBS-Server-System\r\n - id: Target-Server-Generator\r\n uri: lb://Target-Server-Generator\r\n predicates:\r\n - Path=/generator/**\r\n filters:\r\n - name: Hystrix\r\n args:\r\n name: generatorfallback\r\n fallbackUri: forward:/fallback/FEBS-Server-Generator\r\n - id: Target-Server-Job\r\n uri: lb://Target-Server-Job\r\n predicates:\r\n - Path=/job/**\r\n filters:\r\n - name: Hystrix\r\n args:\r\n name: jobfallback\r\n fallbackUri: forward:/fallback/Target-Server-Job\r\n - id: FEBS-Server-test\r\n uri: lb://Target-Server-Test\r\n predicates:\r\n - Path=/test/**\r\n filters:\r\n - name: Hystrix\r\n args:\r\n name: testfallback\r\n fallbackUri: forward:/fallback/FEBS-Server-Test\r\n - id: Target-Server\r\n uri: lb://Target-Server\r\n predicates:\r\n - Path=/target/**\r\n filters:\r\n - name: Hystrix\r\n args:\r\n name: targetfallback\r\n fallbackUri: forward:/fallback/Target-Server\r\n - id: Target-Server-FastDFS\r\n uri: lb://Target-Server-FastDFS\r\n predicates:\r\n - Path=/fastdfs/**\r\n filters:\r\n - name: Hystrix\r\n args:\r\n name: fastdfsfallback\r\n fallbackUri: forward:/fallback/FEBS-Server-FastDFS\r\n loadbalancer:\r\n use404: true\r\n default-filters:\r\n - StripPrefix=1\r\n - FebsDocGatewayHeaderFilter\r\n # autoconfigure:\r\n # exclude: org.springframework.boot.autoconfigure.mongo.MongoReactiveAutoConfiguration,org.springframework.boot.autoconfigure.data.mongo.MongoReactiveRepositoriesAutoConfiguration,org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration\r\n config:\r\n allow-override: true\r\n overrideNone: true\r\n overrideSystemProperties: false\r\n# 网关增强配置\r\n data:\r\n mongodb:\r\n host: ${mongo.url}\r\n port: 27017\r\n database: post-target_route\r\n\r\n redis:\r\n database: 1\r\n host: ${redis.url}\r\n port: 6379\r\n password: redis\r\n lettuce:\r\n pool:\r\n min-idle: 8\r\n max-idle: 500\r\n max-active: 2000\r\n max-wait: 10000\r\n timeout: 5000\r\n security:\r\n user:\r\n name: admin\r\n password: admin\r\n\r\n# 网关增强配置\r\nfebs:\r\n gateway:\r\n enhance: true\r\n jwt:\r\n secret: 123456\r\n expiration: 36000\r\n doc:\r\n gateway:\r\n enable: true\r\n resources: \"FEBS-Server-Job1\"\r\n\r\nhystrix:\r\n command:\r\n default:\r\n execution:\r\n isolation:\r\n thread:\r\n timeoutInMilliseconds: 10000\r\n socialfallback:\r\n execution:\r\n isolation:\r\n thread:\r\n timeoutInMilliseconds: 60000 \r\n\r\nribbon:\r\n eager-load:\r\n enabled: true\r\n\r\nmanagement:\r\n endpoints:\r\n enabled-by-default: false\r\n endpoint:\r\n info:\r\n enabled: false ', 'df798e6c32535efc426e7c80aac74bb1', '2021-06-25 14:30:58', '2021-11-10 17:26:25', NULL, '192.168.11.183', '', '3eb2a58b-d98b-40e9-9329-aae4dfac40b9', 'null', 'null', 'null', 'yaml', 'null');
INSERT INTO `config_info` VALUES (107, 'server-fastdfs.yaml', 'DEFAULT_GROUP', 'server:\r\n port: 9004\r\n tomcat:\r\n max-swallow-size: 100MB\r\nconfig:\r\n info: dddds\r\nspring:\r\n aop:\r\n proxy-target-class: true\r\n jackson:\r\n date-format: yyyy-MM-dd HH:mm:ss\r\n time-zone: GMT+8\r\n boot:\r\n admin:\r\n client:\r\n url: http://${febs-admin}:9003\r\n username: febs\r\n password: 123456\r\n instance:\r\n prefer-ip: true\r\n freemarker:\r\n check-template-location: false\r\n servlet:\r\n multipart:\r\n enabled: true\r\n max-file-size: 30MB\r\n max-request-size: 50MB \r\n mvc:\r\n async:\r\n request-timeout: 20000\r\nsecurity:\r\n oauth2:\r\n resource:\r\n id: ${spring.application.name}\r\n user-info-uri: http://${febs-gateway}:9001/auth/user\r\n\r\ninfo:\r\n app:\r\n name: ${spring.application.name}\r\n description: \"@project.description@\"\r\n version: \"@project.version@\"\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\nfebs:\r\n doc:\r\n enable: true\r\n title: ${spring.application.name}文档\r\n base-package: cc.mrbird.febs.server.fastdfs.controller\r\n description: ${febs.doc.title}\r\n name: HNII-DEV\r\n email: \r\n url: https://\r\n version: 2.0-RELEASE\r\n cloud:\r\n security:\r\n enable: true\r\n anon-uris: /actuator/**,/v2/api-docs,/v2/api-docs-ext,/download/**\r\nfdfs:\r\n tracker_server: 192.168.11.202:22122', 'e29293b51a883ea3314e950601c61398', '2021-06-25 14:30:58', '2021-11-29 12:23:33', NULL, '192.168.11.183', '', '3eb2a58b-d98b-40e9-9329-aae4dfac40b9', 'null', 'null', 'null', 'yaml', 'null');
INSERT INTO `config_info` VALUES (108, 'server-generator.yaml', 'DEFAULT_GROUP', 'server:\r\n port: 9011\r\nspring:\r\n datasource:\r\n dynamic:\r\n p6spy: true\r\n hikari:\r\n connection-timeout: 30000\r\n max-lifetime: 1800000\r\n max-pool-size: 15\r\n min-idle: 5\r\n connection-test-query: select 1\r\n pool-name: FebsHikariCP\r\n primary: base\r\n datasource:\r\n base:\r\n username: root\r\n password: root\r\n driver-class-name: com.mysql.cj.jdbc.Driver\r\n url: jdbc:mysql://${mysql.url}:3306/target_base?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2b8\r\n base2:\r\n username: root\r\n password: root\r\n driver-class-name: com.mysql.cj.jdbc.Driver\r\n url: jdbc:mysql://${mysql.url}:3306/target_business?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2b8 \r\n boot:\r\n admin:\r\n client:\r\n url: http://${febs-admin}:9003\r\n username: febs\r\n password: 123456\r\n instance:\r\n prefer-ip: true\r\n\r\nmybatis-plus:\r\n type-aliases-package: cc.mrbird.febs.common.core.entity.system\r\n mapper-locations: classpath:mapper/*.xml\r\n configuration:\r\n jdbc-type-for-null: null\r\n global-config:\r\n banner: false\r\n\r\nsecurity:\r\n oauth2:\r\n resource:\r\n id: ${spring.application.name}\r\n user-info-uri: http://${febs-gateway}:9001/auth/user\r\n\r\ninfo:\r\n app:\r\n name: ${spring.application.name}\r\n description: \"@project.description@\"\r\n version: \"@project.version@\"\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\n\r\nfebs:\r\n doc:\r\n enable: true\r\n title: ${spring.application.name}文档\r\n base-package: cc.mrbird.febs.server.generator.controller\r\n description: ${febs.doc.title}\r\n name: HNII-DEV\r\n email: \r\n url: https://\r\n version: 2.0-RELEASE\r\n cloud:\r\n security:\r\n enable: true\r\n anon-uris: /actuator/**,/v2/api-docs,/v2/api-docs-ext', '6fcbd16d0111135d491de1674f480bf0', '2021-06-25 14:30:58', '2021-11-10 15:39:53', NULL, '192.168.11.183', '', '3eb2a58b-d98b-40e9-9329-aae4dfac40b9', 'null', 'null', 'null', 'yaml', 'null');
INSERT INTO `config_info` VALUES (109, 'server-job.yaml', 'DEFAULT_GROUP', 'server:\r\n port: 9006\r\nspring:\r\n jackson:\r\n date-format: yyyy-MM-dd HH:mm:ss\r\n time-zone: GMT+8\r\n datasource:\r\n dynamic:\r\n # 是否开启 SQL日志输出,生产环境建议关闭,有性能损耗\r\n p6spy: true\r\n hikari:\r\n connection-timeout: 30000\r\n max-lifetime: 1800000\r\n max-pool-size: 15\r\n min-idle: 5\r\n connection-test-query: select 1\r\n pool-name: FebsHikariCP\r\n # 配置默认数据源\r\n primary: base\r\n datasource:\r\n # 数据源-1,名称为 base\r\n base:\r\n username: root\r\n password: root\r\n driver-class-name: com.mysql.cj.jdbc.Driver\r\n url: jdbc:mysql://${mysql.url}:3306/target_base?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2b8\r\n # 数据源-2,名称为 job\r\n job:\r\n username: root\r\n password: root\r\n driver-class-name: com.mysql.cj.jdbc.Driver\r\n url: jdbc:mysql://${mysql.url}:3306/target_job?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2b8\r\n business:\r\n username: root\r\n password: root\r\n driver-class-name: com.mysql.cj.jdbc.Driver\r\n url: jdbc:mysql://${mysql.url}:3306/target_business?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2b8&allowMultiQueries=true \r\n\r\n boot:\r\n admin:\r\n client:\r\n url: http://${febs-admin}:9003\r\n username: febs\r\n password: 123456\r\n instance:\r\n prefer-ip: true\r\n\r\nmybatis-plus:\r\n type-aliases-package: cc.mrbird.febs.server.job.entity,com.hnii.server.targetjudge.entity\r\n mapper-locations: classpath:mapper/*.xml\r\n configuration:\r\n jdbc-type-for-null: null\r\n global-config:\r\n banner: false\r\n\r\nsecurity:\r\n oauth2:\r\n resource:\r\n id: ${spring.application.name}\r\n user-info-uri: http://${febs-gateway}:9001/auth/user\r\n\r\ninfo:\r\n app:\r\n name: ${spring.application.name}\r\n description: \"@project.description@\"\r\n version: \"@project.version@\"\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\nfebs:\r\n doc:\r\n enable: true\r\n title: ${spring.application.name}文档\r\n base-package: cc.mrbird.febs.server.job.controller\r\n description: ${febs.doc.title}\r\n name: HNII-DEV\r\n email: \r\n url: https://\r\n version: 2.0-RELEASE\r\n cloud:\r\n security:\r\n enable: true\r\n anon-uris: /actuator/**,/v2/api-docs,/v2/api-docs-ext', '99c1ddbe5c92f7918d900357d3451f14', '2021-06-25 14:30:58', '2021-11-10 15:40:24', NULL, '192.168.11.183', '', '3eb2a58b-d98b-40e9-9329-aae4dfac40b9', 'null', 'null', 'null', 'yaml', 'null');
INSERT INTO `config_info` VALUES (110, 'server-system.yaml', 'DEFAULT_GROUP', 'server:\r\n port: 9005\r\n \r\nspring:\r\n aop:\r\n proxy-target-class: true\r\n jackson:\r\n date-format: yyyy-MM-dd HH:mm:ss\r\n time-zone: GMT+8\r\n boot:\r\n admin:\r\n client:\r\n url: http://${febs-admin}:9003\r\n username: febs\r\n password: 123456\r\n instance:\r\n prefer-ip: true\r\n freemarker:\r\n check-template-location: false\r\n\r\n datasource:\r\n dynamic:\r\n p6spy: true\r\n hikari:\r\n connection-timeout: 30000\r\n max-lifetime: 50000\r\n max-pool-size: 15\r\n min-idle: 5\r\n connection-test-query: select 1\r\n pool-name: FebsHikariCP\r\n primary: base\r\n datasource:\r\n base:\r\n username: root\r\n password: root\r\n driver-class-name: com.mysql.cj.jdbc.Driver\r\n url: jdbc:mysql://${mysql.url}:3306/target_base?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2b8\r\n redis:\r\n database: 10\r\n host: ${redis.url}\r\n port: 6379\r\n password: redis\r\n lettuce:\r\n pool:\r\n min-idle: 8\r\n max-idle: 500\r\n max-active: 2000\r\n max-wait: 10000\r\n timeout: 5000\r\nmybatis-plus:\r\n type-aliases-package: cc.mrbird.febs.common.core.entity.system\r\n mapper-locations: classpath:mapper/*.xml\r\n configuration:\r\n jdbc-type-for-null: null\r\n global-config:\r\n banner: false\r\nsecurity:\r\n oauth2:\r\n resource:\r\n id: ${spring.application.name}\r\n user-info-uri: http://${febs-gateway}:9001/auth/user\r\n\r\ninfo:\r\n app:\r\n name: ${spring.application.name}\r\n description: \"@project.description@\"\r\n version: \"@project.version@\"\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\nfebs:\r\n doc:\r\n enable: true\r\n title: ${spring.application.name}文档\r\n base-package: cc.mrbird.febs.server.system.controller\r\n description: ${febs.doc.title}\r\n name: HNII-DEV\r\n email: \r\n url: https://\r\n version: 2.0-RELEASE\r\n cloud:\r\n security:\r\n enable: true\r\n anon-uris: /actuator/**,/v2/api-docs,/v2/api-docs-ext,/wx/**,/dept/**\r\n#tx-lcn:\r\n# client:\r\n# manager-address: ${febs-tx-manager}:9008', 'f9c7d36f0632748d40598724d803f51f', '2021-06-25 14:30:58', '2021-11-10 15:40:45', NULL, '192.168.11.183', '', '3eb2a58b-d98b-40e9-9329-aae4dfac40b9', 'null', 'null', 'null', 'yaml', 'null');
INSERT INTO `config_info` VALUES (111, 'server-target.yaml', 'DEFAULT_GROUP', 'server:\r\n port: 9010\r\n \r\nspring:\r\n aop:\r\n proxy-target-class: true\r\n jackson:\r\n date-format: yyyy-MM-dd HH:mm:ss\r\n time-zone: GMT+8\r\n boot:\r\n admin:\r\n client:\r\n url: http://${febs-admin}:9003\r\n username: febs\r\n password: 123456\r\n instance:\r\n prefer-ip: true\r\n freemarker:\r\n check-template-location: false\r\n servlet:\r\n multipart:\r\n enabled: true\r\n max-file-size: 15MB\r\n max-request-size: 50MB\r\n redis:\r\n database: 10\r\n host: ${redis.url}\r\n port: 6379\r\n password: redis\r\n lettuce:\r\n pool:\r\n min-idle: 8\r\n max-idle: 500\r\n max-active: 2000\r\n max-wait: 10000\r\n timeout: 5000 \r\n datasource:\r\n dynamic:\r\n p6spy: true\r\n hikari:\r\n connection-timeout: 30000\r\n max-lifetime: 50000\r\n max-pool-size: 15\r\n min-idle: 5\r\n connection-test-query: select 1\r\n pool-name: FebsHikariCP\r\n primary: base\r\n datasource:\r\n base:\r\n username: root\r\n password: root\r\n driver-class-name: com.mysql.cj.jdbc.Driver\r\n url: jdbc:mysql://${mysql.url}:3306/target_business?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=GMT%2b8&allowMultiQueries=true\r\n \r\nmybatis-plus:\r\n type-aliases-package: com.hnii.server.targetjudge.entity,cc.mrbird.febs.common.core.entity.system\r\n mapper-locations: classpath:mapper/*.xml\r\n configuration:\r\n jdbc-type-for-null: null\r\n global-config:\r\n banner: false\r\n\r\nfeign:\r\n hystrix:\r\n enabled: true\r\n\r\nhystrix:\r\n shareSecurityContext: true\r\n command:\r\n default:\r\n execution:\r\n isolation:\r\n thread:\r\n timeoutInMilliseconds: 30000 \r\nsecurity:\r\n oauth2:\r\n resource:\r\n id: ${spring.application.name}\r\n user-info-uri: http://${febs-gateway}:9001/auth/user\r\n\r\ninfo:\r\n app:\r\n name: ${spring.application.name}\r\n description: \"@project.description@\"\r\n version: \"@project.version@\"\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\nfebs:\r\n server:\r\n wx:\r\n anon-uris: login/login,login/updateuser,login/grlogin,login/bindPhone\r\n httpsConvert: false\r\n target:\r\n imgurl: https://f3v2109198.xicp.fun/\r\n FrBiUrl: \r\n FrBiUrl_inner:\r\n hniiReportUrl: https://f3v2109198.xicp.fun/report/\r\n doc:\r\n enable: true\r\n title: ${spring.application.name}文档\r\n base-package: cc.mrbird.febs.server.aiestate.controller\r\n description: ${febs.doc.title}\r\n name: HNII-DEV\r\n email: \r\n url: https://\r\n version: 2.0-RELEASE\r\n cloud:\r\n security:\r\n enable: true\r\n anon-uris: /actuator/**,/v2/api-docs,/v2/api-docs-ext,/wx/**,/zdLog/**,/zdZb/**,/zdBggj/**,/zbgl/**,/zdBgxq/**,/message/**,/zdTx/** \r\n#tx-lcn:\r\n# client:\r\n# manager-address: ${febs-tx-manager}:8888\r\n\r\nwx:\r\n corpid: wwf7b93a4a2726066a\r\n corpsecret: f4uHbre4kl9JhJfcU1EFUXMsL0apww6vMwtX_gEI8D4\r\n agentid: 1000003\r\n appid: wx1c56407048f6f4d9\r\n appsecret: b4b15f8fa77dca8b274020c153134897', '1c7961d1797c5d21856a357c7a9e7eaf', '2021-06-25 14:30:58', '2021-12-30 11:46:29', NULL, '192.168.11.204', '', '3eb2a58b-d98b-40e9-9329-aae4dfac40b9', 'null', 'null', 'null', 'yaml', 'null');
-- ----------------------------
-- Table structure for config_info_aggr
-- ----------------------------
DROP TABLE IF EXISTS `config_info_aggr`;
CREATE TABLE `config_info_aggr` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
`data_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'data_id',
`group_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'group_id',
`datum_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'datum_id',
`content` longtext CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT '内容',
`gmt_modified` datetime(0) NOT NULL COMMENT '修改时间',
`app_name` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
`tenant_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT '' COMMENT '租户字段',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uk_configinfoaggr_datagrouptenantdatum`(`data_id`, `group_id`, `tenant_id`, `datum_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = '增加租户字段' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of config_info_aggr
-- ----------------------------
-- ----------------------------
-- Table structure for config_info_beta
-- ----------------------------
DROP TABLE IF EXISTS `config_info_beta`;
CREATE TABLE `config_info_beta` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
`data_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'data_id',
`group_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'group_id',
`app_name` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'app_name',
`content` longtext CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'content',
`beta_ips` varchar(1024) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'betaIps',
`md5` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'md5',
`gmt_create` datetime(0) NOT NULL DEFAULT '2010-05-05 00:00:00' COMMENT '创建时间',
`gmt_modified` datetime(0) NOT NULL DEFAULT '2010-05-05 00:00:00' COMMENT '修改时间',
`src_user` text CHARACTER SET utf8 COLLATE utf8_bin NULL COMMENT 'source user',
`src_ip` varchar(20) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'source ip',
`tenant_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT '' COMMENT '租户字段',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uk_configinfobeta_datagrouptenant`(`data_id`, `group_id`, `tenant_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = 'config_info_beta' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of config_info_beta
-- ----------------------------
-- ----------------------------
-- Table structure for config_info_tag
-- ----------------------------
DROP TABLE IF EXISTS `config_info_tag`;
CREATE TABLE `config_info_tag` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
`data_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'data_id',
`group_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'group_id',
`tenant_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT '' COMMENT 'tenant_id',
`tag_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'tag_id',
`app_name` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'app_name',
`content` longtext CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'content',
`md5` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'md5',
`gmt_create` datetime(0) NOT NULL DEFAULT '2010-05-05 00:00:00' COMMENT '创建时间',
`gmt_modified` datetime(0) NOT NULL DEFAULT '2010-05-05 00:00:00' COMMENT '修改时间',
`src_user` text CHARACTER SET utf8 COLLATE utf8_bin NULL COMMENT 'source user',
`src_ip` varchar(20) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'source ip',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uk_configinfotag_datagrouptenanttag`(`data_id`, `group_id`, `tenant_id`, `tag_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = 'config_info_tag' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of config_info_tag
-- ----------------------------
-- ----------------------------
-- Table structure for config_tags_relation
-- ----------------------------
DROP TABLE IF EXISTS `config_tags_relation`;
CREATE TABLE `config_tags_relation` (
`id` bigint(20) NOT NULL COMMENT 'id',
`tag_name` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'tag_name',
`tag_type` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'tag_type',
`data_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'data_id',
`group_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'group_id',
`tenant_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT '' COMMENT 'tenant_id',
`nid` bigint(20) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`nid`) USING BTREE,
UNIQUE INDEX `uk_configtagrelation_configidtag`(`id`, `tag_name`, `tag_type`) USING BTREE,
INDEX `idx_tenant_id`(`tenant_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = 'config_tag_relation' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of config_tags_relation
-- ----------------------------
-- ----------------------------
-- Table structure for group_capacity
-- ----------------------------
DROP TABLE IF EXISTS `group_capacity`;
CREATE TABLE `group_capacity` (
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键ID',
`group_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT 'Group ID,空字符表示整个集群',
`quota` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '配额,0表示使用默认值',
`usage` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '使用量',
`max_size` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '单个配置大小上限,单位为字节,0表示使用默认值',
`max_aggr_count` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '聚合子配置最大个数,,0表示使用默认值',
`max_aggr_size` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '单个聚合数据的子配置大小上限,单位为字节,0表示使用默认值',
`max_history_count` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '最大变更历史数量',
`gmt_create` datetime(0) NOT NULL DEFAULT '2010-05-05 00:00:00' COMMENT '创建时间',
`gmt_modified` datetime(0) NOT NULL DEFAULT '2010-05-05 00:00:00' COMMENT '修改时间',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uk_group_id`(`group_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = '集群、各Group容量信息表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of group_capacity
-- ----------------------------
-- ----------------------------
-- Table structure for his_config_info
-- ----------------------------
DROP TABLE IF EXISTS `his_config_info`;
CREATE TABLE `his_config_info` (
`id` bigint(64) UNSIGNED NOT NULL,
`nid` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`data_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`group_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`app_name` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'app_name',
`content` longtext CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`md5` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
`gmt_create` datetime(0) NOT NULL DEFAULT '2010-05-05 00:00:00',
`gmt_modified` datetime(0) NOT NULL DEFAULT '2010-05-05 00:00:00',
`src_user` text CHARACTER SET utf8 COLLATE utf8_bin NULL,
`src_ip` varchar(20) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
`op_type` char(10) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL,
`tenant_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT '' COMMENT '租户字段',
PRIMARY KEY (`nid`) USING BTREE,
INDEX `idx_gmt_create`(`gmt_create`) USING BTREE,
INDEX `idx_gmt_modified`(`gmt_modified`) USING BTREE,
INDEX `idx_did`(`data_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 246 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = '多租户改造' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of his_config_info
-- ----------------------------
-- ----------------------------
-- Table structure for permissions
-- ----------------------------
DROP TABLE IF EXISTS `permissions`;
CREATE TABLE `permissions` (
`role` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`resource` varchar(512) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`action` varchar(8) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
UNIQUE INDEX `uk_role_permission`(`role`, `resource`, `action`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of permissions
-- ----------------------------
-- ----------------------------
-- Table structure for roles
-- ----------------------------
DROP TABLE IF EXISTS `roles`;
CREATE TABLE `roles` (
`username` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`role` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of roles
-- ----------------------------
INSERT INTO `roles` VALUES ('febs', 'ROLE_ADMIN');
-- ----------------------------
-- Table structure for tenant_capacity
-- ----------------------------
DROP TABLE IF EXISTS `tenant_capacity`;
CREATE TABLE `tenant_capacity` (
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键ID',
`tenant_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '' COMMENT 'Tenant ID',
`quota` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '配额,0表示使用默认值',
`usage` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '使用量',
`max_size` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '单个配置大小上限,单位为字节,0表示使用默认值',
`max_aggr_count` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '聚合子配置最大个数',
`max_aggr_size` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '单个聚合数据的子配置大小上限,单位为字节,0表示使用默认值',
`max_history_count` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT '最大变更历史数量',
`gmt_create` datetime(0) NOT NULL DEFAULT '2010-05-05 00:00:00' COMMENT '创建时间',
`gmt_modified` datetime(0) NOT NULL DEFAULT '2010-05-05 00:00:00' COMMENT '修改时间',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uk_tenant_id`(`tenant_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = '租户容量信息表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of tenant_capacity
-- ----------------------------
-- ----------------------------
-- Table structure for tenant_info
-- ----------------------------
DROP TABLE IF EXISTS `tenant_info`;
CREATE TABLE `tenant_info` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id',
`kp` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'kp',
`tenant_id` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT '' COMMENT 'tenant_id',
`tenant_name` varchar(128) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT '' COMMENT 'tenant_name',
`tenant_desc` varchar(256) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'tenant_desc',
`create_source` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NULL DEFAULT NULL COMMENT 'create_source',
`gmt_create` bigint(20) NOT NULL COMMENT '创建时间',
`gmt_modified` bigint(20) NOT NULL COMMENT '修改时间',
PRIMARY KEY (`id`) USING BTREE,
UNIQUE INDEX `uk_tenant_info_kptenantid`(`kp`, `tenant_id`) USING BTREE,
INDEX `idx_tenant_id`(`tenant_id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8 COLLATE = utf8_bin COMMENT = 'tenant_info' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of tenant_info
-- ----------------------------
INSERT INTO `tenant_info` VALUES (1, '1', '3eb2a58b-d98b-40e9-9329-aae4dfac40b9', 'target', '指标诊断', 'nacos', 1624600760868, 1624600760868);
-- ----------------------------
-- Table structure for users
-- ----------------------------
DROP TABLE IF EXISTS `users`;
CREATE TABLE `users` (
`username` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`password` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`enabled` tinyint(1) NOT NULL,
PRIMARY KEY (`username`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of users
-- ----------------------------
INSERT INTO `users` VALUES ('febs', '$2a$10$NJRJ.JUIUVX5suXNFRuOFezX5nzQLxl86OyMNnA7yxH1zr94H/gBS', 1);
SET FOREIGN_KEY_CHECKS = 1;

正在加载...
取消
保存