Commit de89d4e5 authored by hewei's avatar hewei

V1.0.16

parent 62bdfb4a
...@@ -27,7 +27,7 @@ Maven引用: ...@@ -27,7 +27,7 @@ Maven引用:
<dependency> <dependency>
<groupId>com.itfsw</groupId> <groupId>com.itfsw</groupId>
<artifactId>mybatis-generator-plugin</artifactId> <artifactId>mybatis-generator-plugin</artifactId>
<version>1.0.15</version> <version>1.0.16</version>
</dependency> </dependency>
``` ```
--------------------------------------- ---------------------------------------
...@@ -206,6 +206,13 @@ public class Test { ...@@ -206,6 +206,13 @@ public class Test {
.field3("xx") .field3("xx")
.field4("xx") .field4("xx")
.build(); .build();
// 或者使用builder静态方法创建Builder
Tb table = Tb.builder()
.field1("xx")
.field2("xx")
.field3("xx")
.field4("xx")
.build();
} }
} }
``` ```
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment