From b0ecb07e1de7ac693a0ad1d0fe938eb19f4f9930 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B6=9B=E5=A3=B0=E4=BE=9D=E6=97=A7?= <1253619383@qq.com> Date: Tue, 14 Oct 2025 06:34:19 +0000 Subject: [PATCH] =?UTF-8?q?update=20docs/zh/base/db-row.md.=20=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3=E7=A4=BA=E4=BE=8B=E4=BB=A3=E7=A0=81=E4=B8=AD=E7=9A=84?= =?UTF-8?q?=E8=AF=AD=E6=B3=95=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/zh/base/db-row.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/zh/base/db-row.md b/docs/zh/base/db-row.md index a7b975a9..2ff6e79e 100644 --- a/docs/zh/base/db-row.md +++ b/docs/zh/base/db-row.md @@ -181,14 +181,14 @@ Other other = row.toObject(Other.class); ## Row 字段转化为驼峰风格 ```java -Row row = Db..selectOneBySql("select * from ...."); +Row row = Db.selectOneBySql("select * from ...."); Map result = row.toCamelKeysMap(); ``` ## Row 字段转换为下划线风格 ```java -Row row = Db..selectOneBySql("select * from ...."); +Row row = Db.selectOneBySql("select * from ...."); Map result = row.toUnderlineKeysMap(); ```