Skip to content

Commit

Permalink
更新首页文档版本号
Browse files Browse the repository at this point in the history
  • Loading branch information
abel533 committed May 26, 2024
1 parent 9921a8e commit a904f53
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<dependency>
<groupId>io.mybatis</groupId>
<artifactId>mybatis-jakarta-jpa</artifactId>
<version>2.2.1</version>
<version>2.2.3</version>
</dependency>
```

Expand Down Expand Up @@ -51,19 +51,19 @@ MyBatis Mapper 要求 MyBatis 最低版本为
<dependency>
<groupId>io.mybatis</groupId>
<artifactId>mybatis-mapper</artifactId>
<version>2.2.1</version>
<version>2.2.3</version>
</dependency>
<!-- 使用 Service 层封装时 -->
<dependency>
<groupId>io.mybatis</groupId>
<artifactId>mybatis-service</artifactId>
<version>2.2.1</version>
<version>2.2.3</version>
</dependency>
<!-- 使用 ActiveRecord 模式时 -->
<dependency>
<groupId>io.mybatis</groupId>
<artifactId>mybatis-activerecord</artifactId>
<version>2.2.1</version>
<version>2.2.3</version>
</dependency>
</dependencies>
```
Expand All @@ -73,11 +73,11 @@ MyBatis Mapper 要求 MyBatis 最低版本为

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

Expand Down

0 comments on commit a904f53

Please sign in to comment.