Skip to content

Commit

Permalink
发布1.2.1,ExampleWrapper 增加 useCondition 表达式条件, true 使用,false 不使用
Browse files Browse the repository at this point in the history
  • Loading branch information
abel533 committed Apr 17, 2022
1 parent 70a2a48 commit 7182643
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,19 @@ MyBatis Mapper 要求 MyBatis 最低版本为
<dependency>
<groupId>io.mybatis</groupId>
<artifactId>mybatis-mapper</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</dependency>
<!-- 使用 Service 层封装时 -->
<dependency>
<groupId>io.mybatis</groupId>
<artifactId>mybatis-service</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</dependency>
<!-- 使用 ActiveRecord 模式时 -->
<dependency>
<groupId>io.mybatis</groupId>
<artifactId>mybatis-activerecord</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</dependency>
</dependencies>
```
Expand All @@ -61,11 +61,11 @@ MyBatis Mapper 要求 MyBatis 最低版本为

```groovy
dependencies {
compile("io.mybatis:mybatis-mapper:1.2.0")
compile("io.mybatis:mybatis-mapper:1.2.1")
// 使用 Service 层封装时
compile("io.mybatis:mybatis-service:1.2.0")
compile("io.mybatis:mybatis-service:1.2.1")
// 使用 ActiveRecord 模式时
compile("io.mybatis:mybatis-activerecord:1.2.0")
compile("io.mybatis:mybatis-activerecord:1.2.1")
}
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
</modules>

<properties>
<revision>1.2.1-SNAPSHOT</revision>
<revision>1.2.1</revision>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down

0 comments on commit 7182643

Please sign in to comment.