Skip to content

Commit 694f43f

Browse files
committed
remote mm
1 parent 58069a9 commit 694f43f

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

quick-sample-server/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,11 @@
6060
<artifactId>quick-platform-common</artifactId>
6161
<version>1.0-SNAPSHOT</version>
6262
</dependency>
63+
<dependency>
64+
<groupId>com.quick.component</groupId>
65+
<artifactId>quick-platform-component</artifactId>
66+
<version>1.0-SNAPSHOT</version>
67+
</dependency>
6368
<dependency>
6469
<groupId>org.projectlombok</groupId>
6570
<artifactId>lombok</artifactId>

quick-sample-server/sample-server/src/main/java/com/quick/CustomApplication.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
@SpringBootApplication
99
@MapperScan("com.quick.mapper")
10+
1011
public class CustomApplication {
1112
public static void main(String[] args) {
1213
SpringApplication.run(CustomApplication.class);

quick-sample-server/sample-server/src/main/java/com/quick/utils/MyBatisPlusGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ protected static List<String> getTables(String tables) {
2121
}
2222

2323
public static void main(String[] args) {
24-
FastAutoGenerator.create("jdbc:mysql://closnew-m.dbsit.sfcloud.local:3306/conversation?useUnicode=true&characterEncoding=utf8&useSSL=false&allowMultiQueries=true&serverTimezone=Asia/Shanghai", "conversation", "Robotkn2022")
24+
FastAutoGenerator.create("", "", "")
2525
// 全局配置
2626
.globalConfig((scanner, builder) -> {
2727
builder.author(scanner.apply("请输入作者")).fileOverride();

0 commit comments

Comments
 (0)