From 2b405c6fb3655f25aefa8f6d0aecafc1d4523f4c Mon Sep 17 00:00:00 2001 From: kings <963987632@qq.com> Date: Fri, 25 Oct 2024 08:31:39 +0000 Subject: [PATCH] =?UTF-8?q?update=20docs/zh/intro/use-mybatis-native.md.?= =?UTF-8?q?=20=E6=96=87=E6=A1=A3=E6=8B=BC=E5=86=99=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: kings <963987632@qq.com> --- docs/zh/intro/use-mybatis-native.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); ```