diff --git a/docs/zh/intro/use-mybatis-native.md b/docs/zh/intro/use-mybatis-native.md index 8beb781b..d9f2709d 100644 --- a/docs/zh/intro/use-mybatis-native.md +++ b/docs/zh/intro/use-mybatis-native.md @@ -66,7 +66,7 @@ QueryWrapper qw = QueryWrapper.create() .where(Account::getAge).eq(18) .and(Account::getId).ge(0); -Page accountPage = ccountMapper +Page accountPage = accountMapper .xmlPaginate("selectByName", Page.of(1, 10), qw); ``` @@ -123,7 +123,7 @@ QueryWrapper qw = QueryWrapper.create() Map otherParams = new HashMap<>(); otherParams.put("otherName", "michael"); -Page accountPage = ccountMapper +Page accountPage = accountMapper .xmlPaginate("selectByName", Page.of(1, 10), qw, otherParams); ```