This commit is contained in:
2019-03-13 16:03:59 +08:00
commit ca2f3f4822
224 changed files with 56136 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
package com.eversec.common;
import java.util.List;
/**
* Created by JUECHENG at 2018/5/7 11:20.
*/
public class PageBean<M> {
private List<M> rows;
private long total;
public PageBean() {
}
public PageBean(List<M> rows, long total) {
this.rows = rows;
this.total = total;
}
public List<M> getRows() {
return rows;
}
public void setRows(List<M> rows) {
this.rows = rows;
}
public long getTotal() {
return total;
}
public void setTotal(long total) {
this.total = total;
}
}