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

com.obatis.config.response.result.PageInfo Maven / Gradle / Ivy

The newest version!
package com.obatis.config.response.result;

import java.util.ArrayList;
import java.util.List;

public class PageInfo {

    /**
     * 分页返回的数据列表
     */
    private List list = new ArrayList<>();
    /**
     * 返回符合查询条件的总条数
     */
    private long total = 0;

    public List getList() {
        return list;
    }
    public void setList(List list) {
        this.list = list;
    }
    public long getTotal() {
        return total;
    }
    public void setTotal(long total) {
        this.total = total;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy