com.obatis.config.response.result.PageInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of obatis-orm Show documentation
Show all versions of obatis-orm Show documentation
obatis-orm, apply database project
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