Skip to content

Commit 1e65653

Browse files
Merge pull request #208 from WeBankFinTech/dev-0.9.0
Dev 0.9.0 merge into master
2 parents 7f3fc2d + d846cc5 commit 1e65653

File tree

224 files changed

+5575
-1364
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

224 files changed

+5575
-1364
lines changed

assembly/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>dss</artifactId>
2424
<groupId>com.webank.wedatasphere.dss</groupId>
25-
<version>0.8.0</version>
25+
<version>0.9.0</version>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>
2828

conf/config.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,4 @@ AZKABAN_ADRESS_PORT=8081
7777
QUALITIS_ADRESS_IP=127.0.0.1
7878
QUALITIS_ADRESS_PORT=8090
7979

80-
DSS_VERSION=0.8.0
80+
DSS_VERSION=0.9.0

datachecker-appjoint/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<artifactId>dss</artifactId>
2424
<groupId>com.webank.wedatasphere.dss</groupId>
25-
<version>0.8.0</version>
25+
<version>0.9.0</version>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>
2828

db/dss_ddl.sql

Lines changed: 154 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ CREATE TABLE `dss_project` (
154154
`name` varchar(200) COLLATE utf8_bin DEFAULT NULL,
155155
`source` varchar(50) COLLATE utf8_bin DEFAULT NULL COMMENT 'Source of the dss_project',
156156
`description` text COLLATE utf8_bin,
157+
`workspace_id` bigint(20) DEFAULT 1,
157158
`user_id` bigint(20) DEFAULT NULL,
158159
`create_time` datetime DEFAULT NULL,
159160
`create_by` bigint(20) DEFAULT NULL,
@@ -294,3 +295,156 @@ CREATE TABLE `event_status` (
294295
`msg_id` int(11) NOT NULL COMMENT '消息的最大消费id',
295296
PRIMARY KEY (`receiver`,`topic`,`msg_name`)
296297
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='消息消费状态表';
298+
299+
300+
-- ----------------------------
301+
-- Table structure for dss_workspace
302+
-- ----------------------------
303+
DROP TABLE IF EXISTS `dss_workspace`;
304+
CREATE TABLE `dss_workspace` (
305+
`id` bigint(20) NOT NULL AUTO_INCREMENT,
306+
`name` varchar(255) DEFAULT NULL,
307+
`label` varchar(255) DEFAULT NULL,
308+
`description` varchar(255) DEFAULT NULL,
309+
`department` varchar(255) DEFAULT NULL,
310+
`product` varchar(255) DEFAULT NULL,
311+
`source` varchar(255) DEFAULT NULL,
312+
`create_by` varchar(255) DEFAULT NULL,
313+
`create_time` datetime DEFAULT NULL,
314+
`last_update_time` datetime DEFAULT NULL,
315+
`last_update_user` varchar(30) DEFAULT NULL,
316+
PRIMARY KEY (`id`),
317+
UNIQUE KEY `name` (`name`)
318+
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
319+
320+
-- ----------------------------
321+
-- Table structure for dss_onestop_menu
322+
-- ----------------------------
323+
DROP TABLE IF EXISTS `dss_onestop_menu`;
324+
CREATE TABLE `dss_onestop_menu` (
325+
`id` int(20) NOT NULL AUTO_INCREMENT,
326+
`name` varchar(64) DEFAULT NULL,
327+
`title_en` varchar(64) DEFAULT NULL,
328+
`title_cn` varchar(64) DEFAULT NULL,
329+
`description` varchar(255) DEFAULT NULL,
330+
`is_active` tinyint(1) DEFAULT 1,
331+
`icon` varchar(255) DEFAULT NULL,
332+
`order` int(2) DEFAULT NULL,
333+
`create_by` varchar(255) DEFAULT NULL,
334+
`create_time` datetime DEFAULT NULL,
335+
`last_update_time` datetime DEFAULT NULL,
336+
`last_update_user` varchar(30) DEFAULT NULL,
337+
PRIMARY KEY (`id`)
338+
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
339+
340+
-- ----------------------------
341+
-- Table structure for dss_onestop_menu_application
342+
-- ----------------------------
343+
DROP TABLE IF EXISTS `dss_onestop_menu_application`;
344+
CREATE TABLE `dss_onestop_menu_application` (
345+
`id` int(20) NOT NULL AUTO_INCREMENT,
346+
`application_id` int(20) DEFAULT NULL,
347+
`onestop_menu_id` int(20) NOT NULL,
348+
`title_en` varchar(64) DEFAULT NULL,
349+
`title_cn` varchar(64) DEFAULT NULL,
350+
`desc_en` varchar(255) DEFAULT NULL,
351+
`desc_cn` varchar(255) DEFAULT NULL,
352+
`labels_en` varchar(255) DEFAULT NULL,
353+
`labels_cn` varchar(255) DEFAULT NULL,
354+
`is_active` tinyint(1) DEFAULT NULL,
355+
`access_button_en` varchar(64) DEFAULT NULL,
356+
`access_button_cn` varchar(64) DEFAULT NULL,
357+
`manual_button_en` varchar(64) DEFAULT NULL,
358+
`manual_button_cn` varchar(64) DEFAULT NULL,
359+
`manual_button_url` varchar(255) DEFAULT NULL,
360+
`icon` varchar(255) DEFAULT NULL,
361+
`order` int(2) DEFAULT NULL,
362+
`create_by` varchar(255) DEFAULT NULL,
363+
`create_time` datetime DEFAULT NULL,
364+
`last_update_time` datetime DEFAULT NULL,
365+
`last_update_user` varchar(30) DEFAULT NULL,
366+
PRIMARY KEY (`id`)
367+
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
368+
369+
-- ----------------------------
370+
-- Table structure for dss_onestop_user_favorites
371+
-- ----------------------------
372+
DROP TABLE IF EXISTS `dss_onestop_user_favorites`;
373+
CREATE TABLE `dss_onestop_user_favorites` (
374+
`id` int(20) NOT NULL AUTO_INCREMENT,
375+
`username` varchar(64) DEFAULT NULL,
376+
`workspace_id` bigint(20) DEFAULT 1,
377+
`menu_application_id` int(20) DEFAULT NULL,
378+
`order` int(2) DEFAULT NULL,
379+
`create_by` varchar(255) DEFAULT NULL,
380+
`create_time` datetime DEFAULT NULL,
381+
`last_update_time` datetime DEFAULT NULL,
382+
`last_update_user` varchar(30) DEFAULT NULL,
383+
PRIMARY KEY (`id`)
384+
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
385+
386+
-- ----------------------------
387+
-- Table structure for dss_homepage_demo_menu
388+
-- ----------------------------
389+
DROP TABLE IF EXISTS `dss_homepage_demo_menu`;
390+
CREATE TABLE `dss_homepage_demo_menu` (
391+
`id` int(20) NOT NULL AUTO_INCREMENT,
392+
`name` varchar(64) DEFAULT NULL,
393+
`title_en` varchar(64) DEFAULT NULL,
394+
`title_cn` varchar(64) DEFAULT NULL,
395+
`description` varchar(255) DEFAULT NULL,
396+
`is_active` tinyint(1) DEFAULT 1,
397+
`icon` varchar(255) DEFAULT NULL,
398+
`order` int(2) DEFAULT NULL,
399+
`create_by` varchar(255) DEFAULT NULL,
400+
`create_time` datetime DEFAULT NULL,
401+
`last_update_time` datetime DEFAULT NULL,
402+
`last_update_user` varchar(30) DEFAULT NULL,
403+
PRIMARY KEY (`id`)
404+
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
405+
406+
-- ----------------------------
407+
-- Table structure for dss_homepage_demo_instance
408+
-- ----------------------------
409+
DROP TABLE IF EXISTS `dss_homepage_demo_instance`;
410+
CREATE TABLE `dss_homepage_demo_instance` (
411+
`id` int(20) NOT NULL AUTO_INCREMENT,
412+
`menu_id` int(20) DEFAULT NULL,
413+
`name` varchar(64) DEFAULT NULL,
414+
`url` varchar(128) DEFAULT NULL,
415+
`title_en` varchar(64) DEFAULT NULL,
416+
`title_cn` varchar(64) DEFAULT NULL,
417+
`description` varchar(255) DEFAULT NULL,
418+
`is_active` tinyint(1) DEFAULT 1,
419+
`icon` varchar(255) DEFAULT NULL,
420+
`order` int(2) DEFAULT NULL,
421+
`click_num` int(11) DEFAULT 0,
422+
`create_by` varchar(255) DEFAULT NULL,
423+
`create_time` datetime DEFAULT NULL,
424+
`last_update_time` datetime DEFAULT NULL,
425+
`last_update_user` varchar(30) DEFAULT NULL,
426+
PRIMARY KEY (`id`)
427+
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
428+
429+
-- ----------------------------
430+
-- Table structure for dss_homepage_video
431+
-- ----------------------------
432+
DROP TABLE IF EXISTS `dss_homepage_video`;
433+
CREATE TABLE `dss_homepage_video` (
434+
`id` int(20) NOT NULL AUTO_INCREMENT,
435+
`name` varchar(64) DEFAULT NULL,
436+
`url` varchar(128) DEFAULT NULL,
437+
`title_en` varchar(64) DEFAULT NULL,
438+
`title_cn` varchar(64) DEFAULT NULL,
439+
`description` varchar(255) DEFAULT NULL,
440+
`is_active` tinyint(1) DEFAULT 1,
441+
`icon` varchar(255) DEFAULT NULL,
442+
`order` int(2) DEFAULT NULL,
443+
`play_num` int(11) DEFAULT 0,
444+
`create_by` varchar(255) DEFAULT NULL,
445+
`create_time` datetime DEFAULT NULL,
446+
`last_update_time` datetime DEFAULT NULL,
447+
`last_update_user` varchar(30) DEFAULT NULL,
448+
PRIMARY KEY (`id`)
449+
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
450+

0 commit comments

Comments
 (0)