mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 17:18:24 +08:00
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:
parent
a911201ee6
commit
45e433d5e9
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user