update docs/zh/base/query.md.

修改了最后分页类Page<T>的结果集字段名称,源码中结果集名称是:records而不是list

Signed-off-by: EafonYoung <7458078+eafonyoung@user.noreply.gitee.com>
This commit is contained in:
EafonYoung 2023-07-28 09:31:00 +00:00 committed by Gitee
parent a911201ee6
commit 45e433d5e9
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -206,7 +206,7 @@ paginate 的返回值为 Page 对象Page 类的定义如下:
```java
public class Page<T> implements Serializable {
private List<T> list; // list result of this page
private List<T> records; // list result of this page
private int pageNumber; // page number
private int pageSize; // result amount of this page
private long totalPage; // total page