package com.manage.util; import java.util.ArrayList; import java.util.List; public class PageHelper { //实体类集合 private List rows = new ArrayList(); //数据总条数 private int total; public PageHelper() { super(); } public List getRows() { return rows; } public void setRows(List rows) { this.rows = rows; } public int getTotal() { return total; } public void setTotal(int total) { this.total = total; } }