!497 update docs/zh/intro/use-mybatis-native.md.

Merge pull request !497 from kings/N/A
This commit is contained in:
Michael Yang 2024-10-25 08:32:10 +00:00 committed by Gitee
commit 31da660ae5
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -66,7 +66,7 @@ QueryWrapper qw = QueryWrapper.create()
.where(Account::getAge).eq(18)
.and(Account::getId).ge(0);
Page<Account> accountPage = ccountMapper
Page<Account> accountPage = accountMapper
.xmlPaginate("selectByName", Page.of(1, 10), qw);
```
@ -123,7 +123,7 @@ QueryWrapper qw = QueryWrapper.create()
Map<String,Object> otherParams = new HashMap<>();
otherParams.put("otherName", "michael");
Page<Account> accountPage = ccountMapper
Page<Account> accountPage = accountMapper
.xmlPaginate("selectByName", Page.of(1, 10), qw, otherParams);
```