All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fastchar.database.FastPage Maven / Gradle / Ivy

package com.fastchar.database;

import com.fastchar.core.FastEntity;

import java.util.List;

public class FastPage {
    private int page;
    private int totalPage;
    private int totalRow;
    private int pageSize;
    private List list;

    public int getPage() {
        return page;
    }

    public void setPage(int page) {
        this.page = page;
    }

    public int getTotalPage() {
        return totalPage;
    }

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

    public int getTotalRow() {
        return totalRow;
    }

    public void setTotalRow(int totalRow) {
        this.totalRow = totalRow;
    }

    public int getPageSize() {
        return pageSize;
    }

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

    public List getList() {
        return list;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy