分页工具类PageResult
程序员文章站
2024-01-22 08:56:28
1、工具类 public class PageResult implements Serializable { private Long total;//总记录数 private List rows;//当前页面结果 public Long getTotal() { return total; } ......
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(); }
上一篇: MySQL授权问题总结
下一篇: C#文件和字节流的转换方法