mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-06 16:48:24 +08:00
optimize
This commit is contained in:
parent
b0b3bcc188
commit
4961aa66f7
@ -118,7 +118,8 @@ public class Table {
|
||||
|
||||
public List<String> buildImports() {
|
||||
Set<String> imports = new HashSet<>();
|
||||
imports.add(com.mybatisflex.annotation.Table.class.getName());
|
||||
// imports.add(com.mybatisflex.annotation.Table.class.getName());
|
||||
imports.add("com.mybatisflex.annotation.Table");
|
||||
for (Column column : columns) {
|
||||
imports.addAll(column.getImportClasses());
|
||||
}
|
||||
|
||||
@ -18,6 +18,13 @@
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.mybatis-flex</groupId>
|
||||
<artifactId>mybatis-flex-annotation</artifactId>
|
||||
<version>1.2.3</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.mybatis-flex</groupId>
|
||||
<artifactId>mybatis-flex-processor</artifactId>
|
||||
|
||||
@ -11,15 +11,18 @@
|
||||
|
||||
<artifactId>mybatis-flex-processor</artifactId>
|
||||
<dependencies>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.mybatis</groupId>
|
||||
<artifactId>mybatis</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.mybatis-flex</groupId>
|
||||
<artifactId>mybatis-flex-annotation</artifactId>
|
||||
<version>1.2.3</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user