PageBean类模板

Posted jepson6669

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PageBean类模板相关的知识,希望对你有一定的参考价值。

package ${enclosing_package};

import java.util.ArrayList;
import java.util.List;

import com.itheima.domain.Product;

public class ${primary_type_name}<T> {
    
    //当前页
    private int currentPage;
    //当前页显示的条数
    private int currentCount;
    //总条数
    private int totalCount;
    //总页数
    private int totalPage;
    //每页显示的数据
    private List<T> productList = new ArrayList<T>();
    
    
    public int getCurrentPage() {
        return currentPage;
    }
    public void setCurrentPage(int currentPage) {
        this.currentPage = currentPage;
    }
    public int getCurrentCount() {
        return currentCount;
    }
    public void setCurrentCount(int currentCount) {
        this.currentCount = currentCount;
    }
    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 List<T> getProductList() {
        return productList;
    }
    public void setProductList(List<T> productList) {
        this.productList = productList;
    }
}

 

以上是关于PageBean类模板的主要内容,如果未能解决你的问题,请参考以下文章

分页工具类PageBean

分页PageBean类

分页实体类:PageBean

pageBean实现分页

java分页三个类 PageBean ResponseUtil StringUtil

JSP 分页代码