com.gitee.rabbitnoteeth.bedrock.http.page.PageResult Maven / Gradle / Ivy
The newest version!
package com.gitee.rabbitnoteeth.bedrock.http.page;
import java.util.List;
public class PageResult {
private long total;
private List records;
public PageResult() {
}
public PageResult(long total, List records) {
this.total = total;
this.records = records;
}
public long getTotal() {
return total;
}
public void setTotal(long total) {
this.total = total;
}
public List getRecords() {
return records;
}
public void setRecords(List records) {
this.records = records;
}
}