码迷,mamicode.com
首页 > 其他好文 > 详细

PageBean类模板

时间:2018-01-25 15:39:15      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:port   bean   pre   util   oid   type   lis   main   tco   

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类模板

标签:port   bean   pre   util   oid   type   lis   main   tco   

原文地址:https://www.cnblogs.com/jepson6669/p/8350937.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!