update docs/zh/base/db-row.md.

Signed-off-by: yang_zzu <8088436+yang-zzu@user.noreply.gitee.com>
This commit is contained in:
yang_zzu 2023-08-23 09:56:36 +00:00 committed by Gitee
parent 7f3de5a21a
commit d2d1b47eff
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -138,7 +138,7 @@ System.out.println(articles);
## Row.toObject()
`Row.toObject(Other.class)``Row.toEntity(Entity.class)` 相似。不一样的地方在于 `Row.toObject(Other.class)` 是通过去查找
`Row.toObject(Other.class)``Row.toEntity(Entity.class)` 相似。不一样的地方在于 `Row.toObject(Other.class)` 是通过去查找
`Other.class``setter` 方法去匹配 Row 的 key 进行赋值的。
例如 `Other.class` 的代码如下: