Skip to content

Commit

Permalink
1、新增批量修改物理库配置
Browse files Browse the repository at this point in the history
2、新增6个复合查询
  • Loading branch information
matrixbingo committed Jan 25, 2021
1 parent e52facf commit 45e6203
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 17 deletions.
13 changes: 0 additions & 13 deletions das-console-manager/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -368,19 +368,6 @@

</dependencies>

<distributionManagement>
<repository>
<id>ppdai-releases-repo</id>
<name>Internal Releases</name>
<url>http://maven.repo.ppdai.com/nexus/content/repositories/releases/</url>
</repository>
<snapshotRepository>
<id>ppdai-snapshots-repo</id>
<name>Internal Snapshots</name>
<url>http://maven.repo.ppdai.com/nexus/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>

<build>
<plugins>
<plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ return /******/ (function(modules) { // webpackBootstrap
/******/ script.charset = 'utf-8';
/******/ script.async = true;
/******/
/******/ script.src = __webpack_require__.p + "" + ({"1":"index"}[chunkId]||chunkId) + "." + {"1":"f8b28dcfc8d34b8f5c6e"}[chunkId] + ".js";
/******/ script.src = __webpack_require__.p + "" + ({"1":"index"}[chunkId]||chunkId) + "." + {"1":"ebbaa1585a2eee0e719d"}[chunkId] + ".js";
/******/ head.appendChild(script);
/******/ }
/******/ };
Expand Down

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion das-console-manager/src/main/resources/pages/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -142071,7 +142071,7 @@ return webpackJsonp([1],[
case 'db_page_by_dbset_names':
return _viewComponentsUtilsUtilIndex.UserEnv.getAppUrl() + '/compound/query/db/page/by/dbset/names';
case 'group_tree':
return _viewComponentsUtilsUtilIndex.UserEnv.getAppUrl() + '/group/tree';
return _viewComponentsUtilsUtilIndex.UserEnv.getAppUrl() + '/compound/query/group/tree';
}
},
type: {
Expand Down
2 changes: 1 addition & 1 deletion das-console-manager/src/main/resources/pages/index.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<#else>
<link rel="stylesheet" type="text/css" href="../pages/dist/index.css"/>
<script src="../pages/dist/common.js"></script>
<script src="../pages/dist/index.js?t=20210112"></script>
<script src="../pages/dist/index.js?t=20210125"></script>
</#if>
</body>
</html>
3 changes: 3 additions & 0 deletions das-console-manager/src/main/resources/script.sql
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ CREATE TABLE `databaseset` (
`update_user_no` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`insert_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`pattern` tinytext COLLATE utf8mb4_unicode_ci COMMENT '模式:0:普通,1:mgr',
PRIMARY KEY (`id`),
UNIQUE KEY `AK_unique_key` (`name`),
KEY `FK_Reference_4` (`group_id`),
Expand Down Expand Up @@ -168,6 +169,8 @@ CREATE TABLE `project` (
`comment` text COLLATE utf8mb4_unicode_ci,
`first_release_time` timestamp NULL DEFAULT NULL COMMENT '首次上线时间',
`token` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'das token',
`attributes` tinytext COLLATE utf8mb4_unicode_ci COMMENT '项目其他配置',
`state` tinyint(2) DEFAULT '2' COMMENT '下线状态:0:运行中,1,下线',
PRIMARY KEY (`id`),
UNIQUE KEY `app_id` (`app_id`),
UNIQUE KEY `app_id_2` (`app_id`),
Expand Down

0 comments on commit 45e6203

Please sign in to comment.