分页实体类的封装

package com.sicau.vo;

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

public class PageBean<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;
	}

	
	
}

猜你喜欢

转载自blog.csdn.net/qq_38475119/article/details/81784555