分页工具类设计

发布时间:2024-12-20 15:11

带有分隔设计的盒子利于区分不同种类工具 #生活技巧# #收纳整理技巧# #清洁工具收纳盒#

分页

最新推荐文章于 2024-10-08 05:30:00 发布

我叫阿狸猫 于 2013-11-28 10:36:40 发布

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

public class PageBean {

private int currentPage;

private int pageSize;

private Long recordCount;

private List recordList;

private int pageCount;

private int beginPageIndex;

private int endPageIndex;

public PageBean(int pageNum, int pageSize, Long recordCount, List recordList) {

this.currentPage = pageNum;

this.pageSize = pageSize;

this.recordCount = recordCount;

this.recordList = recordList;

if (recordCount % pageSize != 0) {

this.pageCount = recordCount.intValue() / pageSize + 1;

} else {

this.pageCount = recordCount.intValue() / pageSize;

}

if (pageCount <= 10) {

this.beginPageIndex = 1;

this.endPageIndex = pageCount;

} else {

this.beginPageIndex = this.currentPage - 4;

this.endPageIndex = this.currentPage + 5;

if(beginPageIndex < 1){

this.beginPageIndex = 1;

this.endPageIndex = 10;

}else if(this.endPageIndex > this.pageCount){

this.endPageIndex = this.pageCount;

this.beginPageIndex = this.pageCount - 10 + 1;

}

}

}

public int getCurrentPage() {

return currentPage;

}

public void setCurrentPage(int currentPage) {

this.currentPage = currentPage;

}

public int getPageCount() {

return pageCount;

}

public void setPageCount(int pageCount) {

this.pageCount = pageCount;

}

public int getPageSize() {

return pageSize;

}

public void setPageSize(int pageSize) {

this.pageSize = pageSize;

}

public Long getRecordCount() {

return recordCount;

}

public void setRecordCount(Long recordCount) {

this.recordCount = recordCount;

}

public List getRecordList() {

return recordList;

}

public void setRecordList(List recordList) {

this.recordList = recordList;

}

public int getBeginPageIndex() {

return beginPageIndex;

}

public void setBeginPageIndex(int beginPageIndex) {

this.beginPageIndex = beginPageIndex;

}

public int getEndPageIndex() {

return endPageIndex;

}

public void setEndPageIndex(int endPageIndex) {

this.endPageIndex = endPageIndex;

}

}

Service层:

@Override

public PageBean getPageBean(int pageNum) {

int pageSize = Configuration.getPageSize();

Long recordCount = dao.getCount();

List<Forum> recordList = dao.findAllByPageSize(pageNum, pageSize);

return new PageBean(pageNum, pageSize, recordCount, recordList);

}

网址:分页工具类设计 https://www.yuejiaxmz.com/news/view/526537

相关内容

6000字干货!超全面的页面分割设计指南
厨房用具分类(4页)
Springboot生活垃圾分类回收系统设计与实现
3D设计工具
厨房厨具设备分类归纳有讲究
分类垃圾模板在线制作设计
基于周期性意图分析,设计生活工具类产品的交互策略 – 人人都是产品经理,
常见的网页画图工具有哪些?
创意家具设计方案(54页)
建筑设计中的建筑节能措施分析(共9页).doc

随便看看