forked from Linyuzai/concept
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
tanghanzheng
committed
Jun 8, 2023
1 parent
31d4c86
commit fcfd8d5
Showing
13 changed files
with
131 additions
and
60 deletions.
There are no files selected for viewing
2 changes: 0 additions & 2 deletions
2
...new/java/1.0.0/$ARTIFACT$-application/application-boot/src/main/resources/application.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
server: | ||
port: 9999 | ||
spring: | ||
application: | ||
name: $ARTIFACT$-application-boot | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 0 additions & 11 deletions
11
...pt-cloud/pluginew/java/1.0.0/$ARTIFACT$-rpc/src/main/java/$PACKAGE$/rpc/ConditionsRO.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
begin; | ||
|
||
create table t_user | ||
( | ||
id varchar(64) not null | ||
primary key, | ||
username varchar(255) not null, | ||
password varchar(255) not null, | ||
nickname varchar(255) not null, | ||
avatar varchar(255) null, | ||
enabled tinyint(1) default 1 not null, | ||
create_time datetime not null | ||
); | ||
|
||
INSERT INTO t_user (id, username, password, nickname, avatar, enabled, create_time) | ||
VALUES ('user1', 'user1', 'user1', 'user1', null, 1, '2001-01-01 00:00:00'); | ||
INSERT INTO t_user (id, username, password, nickname, avatar, enabled, create_time) | ||
VALUES ('user2', 'user2', 'user2', 'user2', null, 1, '2002-02-02 00:00:00'); | ||
INSERT INTO t_user (id, username, password, nickname, avatar, enabled, create_time) | ||
VALUES ('user3', 'user3', 'user3', 'user3', null, 1, '2003-03-03 00:00:00'); | ||
INSERT INTO t_user (id, username, password, nickname, avatar, enabled, create_time) | ||
VALUES ('user4', 'user4', 'user4', 'user4', null, 1, '2004-04-04 00:00:00'); | ||
INSERT INTO t_user (id, username, password, nickname, avatar, enabled, create_time) | ||
VALUES ('user5', 'user5', 'user5', 'user5', null, 1, '2005-05-05 00:00:00'); | ||
|
||
create table t_sample | ||
( | ||
id varchar(64) not null | ||
primary key, | ||
sample varchar(255) not null, | ||
user_id varchar(64) null, | ||
deleted tinyint(1) default 0 not null | ||
); | ||
|
||
INSERT INTO t_sample (id, sample, user_id, deleted) | ||
VALUES ('sample1', 'sample1', 'user1', 0); | ||
INSERT INTO t_sample (id, sample, user_id, deleted) | ||
VALUES ('sample2', 'sample2', 'user2', 0); | ||
|
||
create table t_sample_user | ||
( | ||
id bigint auto_increment | ||
primary key, | ||
sample_id varchar(64) not null, | ||
user_id varchar(64) not null | ||
); | ||
|
||
INSERT INTO t_sample_user (id, sample_id, user_id) | ||
VALUES (1, 'sample1', 'user3'); | ||
INSERT INTO t_sample_user (id, sample_id, user_id) | ||
VALUES (2, 'sample1', 'user4'); | ||
INSERT INTO t_sample_user (id, sample_id, user_id) | ||
VALUES (3, 'sample2', 'user3'); | ||
INSERT INTO t_sample_user (id, sample_id, user_id) | ||
VALUES (4, 'sample2', 'user5'); | ||
|
||
commit; |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters