pageBean的实体类

匿名 (未验证) 提交于 2019-12-03 00:03:02
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 +                '}';    }}
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!