IPage.java 1.65 KB
package com.cnlive.goldenline.model.mine;

import java.util.List;

/**
 * Description:
 * Created on 2017/3/31
 * Author : 郭
 */
public class IPage {
    //表示一共几页数据
    private int count;
    //目前是第几页
    private int current;
    //    表示一页多少数据
    private int size;
    //表示一共多少条数据
    private int total;
    //优惠券bean
    private List<CnliveMyCouponPo> rows;

    public IPage() {
        super();
    }

    public IPage(int count, int current, int size, int total, List<CnliveMyCouponPo> rows) {
        this.count = count;
        this.current = current;
        this.size = size;
        this.total = total;
        this.rows = rows;
    }

    public int getCount() {
        return count;
    }

    public void setCount(int count) {
        this.count = count;
    }

    public int getCurrent() {
        return current;
    }

    public void setCurrent(int current) {
        this.current = current;
    }

    public int getSize() {
        return size;
    }

    public void setSize(int size) {
        this.size = size;
    }

    public int getTotal() {
        return total;
    }

    public void setTotal(int total) {
        this.total = total;
    }

    public List<CnliveMyCouponPo> getRows() {
        return rows;
    }

    public void setRows(List<CnliveMyCouponPo> rows) {
        this.rows = rows;
    }

    @Override
    public String toString() {
        return "IPage{" +
                "count=" + count +
                ", current=" + current +
                ", size=" + size +
                ", total=" + total +
                ", rows=" + rows +
                '}';
    }
}