标签:array color list 总数 style span ceil private bsp
1、分页是在dao层封装好的
2、分页的参数:
currentPage:当前页数
pageSize:每页的数量
totalPage:总页数 Math.ceil(totalCount/pageSize)
totalCount:总数量
封装好的集合 List<T> list ;
1 public class Page<T> { 2 private Integer currentPage;//当前页 3 private Integer pageSize;//每页数量 4 private Integer totalPage;//总页数 5 private Long totalCount;//总数量 6 private List<T> list = new ArrayList<T>(); 7 }
标签:array color list 总数 style span ceil private bsp
原文地址:https://www.cnblogs.com/zzzyiren/p/10339956.html