Update CommonPage.java

This commit is contained in:
macro 2020-09-07 20:59:18 +08:00
parent dfaf43e775
commit 8c15f7d88f

View File

@ -10,10 +10,25 @@ import java.util.List;
* Created by macro on 2019/4/19.
*/
public class CommonPage<T> {
/**
* 当前页码
*/
private Integer pageNum;
/**
* 每页数量
*/
private Integer pageSize;
/**
* 总页数
*/
private Integer totalPage;
/**
* 总条数
*/
private Long total;
/**
* 分页数据
*/
private List<T> list;
/**