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