1、工具类

public class PageResult implements Serializable {

    private Long total;//总记录数
private List rows;//当前页面结果 public Long getTotal() {
return total;
} public void setTotal(Long total) {
this.total = total;
} public List getRows() {
return rows;
} public void setRows(List rows) {
this.rows = rows;
} public PageResult(Long total, List rows) {
this.total = total;
this.rows = rows;
} public PageResult() {
}
}

2、使用工具类

  该工具类是用于返回的是分页效果。需要返回PageResult类型。

@RequestMapper("..")
public PageResult add(){
return service.add();
}

  

05-20 02:52