首页>代码>springboot+thymeleaf基于jquery.validate批量验证表单实例>/bootstrap-demo1/src/main/java/com/example/entity/Pager.java
package com.example.entity; import java.util.Map; /** * 自定义分页类 * @author 程就人生 * @date 2019年9月6日 */ public class Pager { //每页数据条数,默认10条 private int pageSize = 10; //数据总数,默认0 private int dataCount = 0; //当前页数,默认第一页 private int currentPage = 1; //开始条数 private int limitStart; //查询条件的封装 private Map<String,Object> condition; public int getPageSize() { return pageSize; } public void setPageSize(int pageSize) { this.pageSize = pageSize; } public int getDataCount() { return dataCount; } public void setDataCount(int dataCount) { this.dataCount = dataCount; } public int getCurrentPage() { return currentPage; } public void setCurrentPage(int currentPage) { this.currentPage = currentPage; } public Map<String, Object> getCondition() { return condition; } public void setCondition(Map<String, Object> condition) { this.condition = condition; } public int getLimitStart() { return limitStart; } public void setLimitStart(int limitStart) { this.limitStart = limitStart; } }
最近下载更多
fbbwsd LV1
2020年4月18日
tuyinbo LV2
2020年1月3日
soft5200 LV30
2019年11月17日
admin123456686 LV10
2019年10月29日
cocon2 LV10
2019年10月8日
123123123qqqqq LV2
2019年9月29日
near2434 LV13
2019年9月27日
安阳工学院 LV8
2019年9月23日
啊啊啊13 LV1
2019年9月20日
zhenghongixin4065 LV9
2019年9月19日