mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-06 16:48:24 +08:00
!497 update docs/zh/intro/use-mybatis-native.md.
Merge pull request !497 from kings/N/A
This commit is contained in:
commit
31da660ae5
@ -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);
|
||||
```
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user