Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
abel533 committed Apr 17, 2022
2 parents 865b4a5 + f443ba3 commit b45cd00
Showing 1 changed file with 6 additions and 6 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.1</version>
<version>1.2.2</version>
</dependency>
<!-- 使用 Service 层封装时 -->
<dependency>
<groupId>io.mybatis</groupId>
<artifactId>mybatis-service</artifactId>
<version>1.2.1</version>
<version>1.2.2</version>
</dependency>
<!-- 使用 ActiveRecord 模式时 -->
<dependency>
<groupId>io.mybatis</groupId>
<artifactId>mybatis-activerecord</artifactId>
<version>1.2.1</version>
<version>1.2.2</version>
</dependency>
</dependencies>
```
Expand All @@ -61,11 +61,11 @@ MyBatis Mapper 要求 MyBatis 最低版本为

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

Expand Down

0 comments on commit b45cd00

Please sign in to comment.