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

分页PageBean类

时间:2017-07-26 01:57:27      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:str   bean   his   固定   ble   ons   port   turn   ceil   

package cn.itheima.store.product.domain;

import java.io.Serializable;
import java.util.List;

public class PageBean<T> implements Serializable{

    private int startIndex;//起始索引  需要计算出来
    
    private int pageSize;//一页显示条数 固定赋值
    
    private int pageNumber;//当前页  前台传递
    
    private List<T> list;//分页查询出来的数据
    
    private int totalRecord;//总记录数  需要查询出来
    
    private int totalPage;//总页数   Math.ceil

    public int getStartIndex() {
//        return startIndex;
        return startIndex = (this.getPageNumber()-1)*this.getPageSize();
    }

    public void setStartIndex(int startIndex) {
        this.startIndex = startIndex;
    }

    public int getPageSize() {
        return pageSize;
    }

    public void setPageSize(int pageSize) {
        this.pageSize = pageSize;
    }

    public int getPageNumber() {
        return pageNumber;
    }

    public void setPageNumber(int pageNumber) {
        this.pageNumber = pageNumber;
    }

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

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

    
    public int getTotalRecord() {
        return totalRecord;
    }

    public void setTotalRecord(int totalRecord) {
        this.totalRecord = totalRecord;
    }

    
    
    public int getTotalPage() {
//        return totalPage;
        return totalPage = (this.getTotalRecord()%this.getPageSize()==0?(this.getTotalRecord()/this.getPageSize()):(this.getTotalRecord()/this.getPageSize()+1));
    }

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

    public PageBean() {
        super();
        // TODO Auto-generated constructor stub
    }
    
    
}

分页PageBean类

标签:str   bean   his   固定   ble   ons   port   turn   ceil   

原文地址:http://www.cnblogs.com/zjqblog/p/7237206.html

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