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

文档拼写错误

Signed-off-by: kings <963987632@qq.com>
This commit is contained in:
kings 2024-10-25 08:31:39 +00:00 committed by Gitee
parent 3938f8b809
commit 2b405c6fb3
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);
```