Skip to content

Commit

Permalink
更新1.3.0版本
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfantasy committed Aug 25, 2020
1 parent 61c0e8d commit ca10599
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<dependency>
<groupId>com.github.davidfantasy</groupId>
<artifactId>mybatis-plus-generator-ui</artifactId>
<version>1.2.2</version>
<version>1.3.0</version>
<scope>test</scope>
</dependency>
```
Expand All @@ -22,6 +22,7 @@
| 1.0.X | 3.3.1 |
| 1.1.X | 3.3.2 |
| 1.2.X | 3.3.2 |
| 1.3.X | 3.3.2 |

2. 在项目的test目录新建一个启动类,代码示例如下:

Expand Down Expand Up @@ -80,7 +81,7 @@ public class GeberatorUIServer {

![代码生成选项](https://gitee.com/davidfantasy/mybatis-plus-generator-ui/raw/master/imgs/generator-options.png)

4. **SQL结果集自动生成代码**:通过输入查询SQL,自动在Mapper.xml中生成查询方法,DTO对象和ResultMap(结果集映射配置)
4. **SQL结果集自动生成代码**:通过输入查询SQL,可自动在Mapper(Xml及Java)中生成对应的查询方法,DTO对象和ResultMap(结果集映射配置)

![SQL编辑](https://gitee.com/davidfantasy/mybatis-plus-generator-ui/raw/master/imgs/SQL-edit.png)

Expand Down
7 changes: 6 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.github.davidfantasy</groupId>
<artifactId>mybatis-plus-generator-ui</artifactId>
<version>1.2.2</version>
<version>1.3.0</version>
<modelVersion>4.0.0</modelVersion>

<name>mybatis-plus-generator-ui</name>
Expand Down Expand Up @@ -101,6 +101,11 @@
<artifactId>jsqlparser</artifactId>
<version>3.2</version>
</dependency>
<dependency>
<groupId>com.github.javaparser</groupId>
<artifactId>javaparser-symbol-solver-core</artifactId>
<version>3.16.1</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
Expand Down

0 comments on commit ca10599

Please sign in to comment.