package com.gjp.bean;
import java.util.List;
public class Page<T> {
private Integer total; // 总条数
private Integer pageCount; // 总页数
private Integer currentPage = 1; // 当前页数
private Integer size = 10; // 每页显示条数
private List<T> rows; // 列表数据
public int getTotal() {
return total;
}
public void setTotal(int total) {
this.total = total;
}
public int getCurrentPage() {
return currentPage;
}
public void setCurrentPage(int currentPage) {
this.currentPage = currentPage;
}
public int getSize() {
return size;
}
public void setSize(int size) {
this.size = size;
}
public List<T> getRows() {
return rows;
}
public void setRows(List<T> rows) {
this.rows = rows;
}
public int getPageCount() {
return pageCount;
}
public void setPageCount(int pageCount) {
this.pageCount = pageCount;
}
}
最近下载更多
xiaoaitx LV8
1月2日
森sdfgf LV8
2024年2月8日
zhunishimian LV6
2023年5月22日
and123456 LV11
2022年7月12日
testuser1234567 LV24
2022年5月23日
Justice_Eternal LV14
2022年4月12日
wanglinddad LV55
2022年4月11日
543666826 LV34
2021年11月28日
haiwen LV19
2021年9月9日
vNOCTISv LV4
2021年7月27日
最近浏览更多
xiaoaitx LV8
1月2日
bluerstar LV1
2024年10月23日
微信网友_7151914139078656 LV2
2024年9月4日
sunlea LV20
2024年5月22日
educationAAA LV11
2024年5月11日
shenghaer LV1
2024年2月9日
森sdfgf LV8
2024年2月8日
阿凡达 LV9
2024年1月29日
admin_z LV22
2024年1月29日
binlong520
2024年1月10日
暂无贡献等级

