Skip to content

Commit

Permalink
更新文档中的版本号
Browse files Browse the repository at this point in the history
  • Loading branch information
abel533 committed Apr 8, 2022
1 parent c063a57 commit 98f778b
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 @@ -36,19 +36,19 @@ MyBatis Mapper 要求 MyBatis 最低版本为
<dependency>
<groupId>io.mybatis</groupId>
<artifactId>mybatis-mapper</artifactId>
<version>1.0.3</version>
<version>1.2.0</version>
</dependency>
<!-- 使用 Service 层封装时 -->
<dependency>
<groupId>io.mybatis</groupId>
<artifactId>mybatis-service</artifactId>
<version>1.0.3</version>
<version>1.2.0</version>
</dependency>
<!-- 使用 ActiveRecord 模式时 -->
<dependency>
<groupId>io.mybatis</groupId>
<artifactId>mybatis-activerecord</artifactId>
<version>1.0.3</version>
<version>1.2.0</version>
</dependency>
</dependencies>
```
Expand All @@ -58,11 +58,11 @@ MyBatis Mapper 要求 MyBatis 最低版本为

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

Expand Down

0 comments on commit 98f778b

Please sign in to comment.