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

com.soento.core.lang.PageData Maven / Gradle / Ivy

package com.soento.core.lang;

import java.util.List;

/**
 * @author soento
 */
public class PageData extends BaseObject {
    /**
     * 查询页数
     */
    private int index;
    /**
     * 分页步长
     */
    private int limit;
    /**
     * 总记录数
     */
    private int total;
    /**
     * 数据列表
     */
    private List dataList;

    public int getIndex() {
        return index;
    }

    public void setIndex(int index) {
        this.index = index;
    }

    public int getLimit() {
        return limit;
    }

    public void setLimit(int limit) {
        this.limit = limit;
    }

    public int getTotal() {
        return total;
    }

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

    public List getDataList() {
        return dataList;
    }

    public void setDataList(List dataList) {
        this.dataList = dataList;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy