package com.hopetesting.domain;

import java.util.List;

/**
* @author newcityman
* @date 2019/9/7 - 19:19
*/
public class PageBean<T>{
private int totalCount; //总记录数
private int totalPage; //总页码
private int rows; //每页显示的记录数
private int currentPage; //当前页
private List<T> list; //每页的数据

public PageBean() {
}

public PageBean(int totalCount, int totalPage, int rows, int currentPage, List<T> list) {
this.totalCount = totalCount;
this.totalPage = totalPage;
this.rows = rows;
this.currentPage = currentPage;
this.list = list;
}

public int getTotalCount() {
return totalCount;
}

public void setTotalCount(int totalCount) {
this.totalCount = totalCount;
}

public int getTotalPage() {
return totalPage;
}

public void setTotalPage(int totalPage) {
this.totalPage = totalPage;
}

public int getRows() {
return rows;
}

public void setRows(int rows) {
this.rows = rows;
}

public int getCurrentPage() {
return currentPage;
}

public void setCurrentPage(int currentPage) {
this.currentPage = currentPage;
}

public List<T> getList() {
return list;
}

public void setList(List<T> list) {
this.list = list;
}

@Override
public String toString() {
return "PageBean{" +
"totalCount=" + totalCount +
", totalPage=" + totalPage +
", rows=" + rows +
", currentPage=" + currentPage +
", list=" + list +
'}';
}
}

相关文章:

  • 2021-08-12
  • 2021-10-07
  • 2022-12-23
  • 2021-11-28
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-02-02
猜你喜欢
  • 2022-12-23
  • 2021-05-16
  • 2021-12-24
  • 2021-04-13
  • 2021-03-31
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案