首页>代码>maven整合mybatis+generator生成java自定义model实体类,dao接口和mapper映射文件>/demo-generator-mybatis/src/main/java/com/xe/demo/common/pojo/PageModel.java
package com.xe.demo.common.pojo;

/**
 * 分页实体
 * @author CZH
 */
public class PageModel {
	/** 页码 */
	private Integer pageNo = 1;
	/** 当前记录起始索引 */
	private Integer startRow = 0;
	/** 每页数量 */
	private Integer pageSize = 10;
	/** 排序字段 */
	private String sortName;
	/** 排序类型 */
	private String sortOrder = "asc";

	public Integer getPageNo() {
		return pageNo;
	}
	public void setPageNo(Integer pageNo) {
		this.pageNo = pageNo;
	}
	public Integer getStartRow() {
		startRow = (getPageNo() - 1) * getPageSize();
		if (startRow < 0) {
			startRow = 0;
		}
		return startRow;
	}
	public void setStartRow(Integer startRow) {
		this.startRow = startRow;
	}
	public Integer getPageSize() {
		return pageSize;
	}
	public void setPageSize(Integer pageSize) {
		this.pageSize = pageSize;
	}
	public String getSortName() {
		return sortName;
	}
	public void setSortName(String sortName) {
		this.sortName = sortName;
	}
	public String getSortOrder() {
		return sortOrder;
	}
	public void setSortOrder(String sortOrder) {
		this.sortOrder = sortOrder;
	}
}
最近下载更多
212600  LV7 2022年3月7日
blackcat123  LV7 2020年12月8日
hjc810794  LV8 2020年4月25日
jj1201  LV1 2020年3月31日
0312wangchen  LV26 2019年9月20日
xiegeping  LV24 2019年9月19日
xp95323  LV14 2019年8月21日
Swordmeng888  LV5 2019年7月2日
wumeicun  LV1 2019年7月1日
随便1212  LV1 2019年6月26日
最近浏览更多
youwuzuichen  LV10 2023年6月26日
yeali178  LV1 2023年6月10日
张真狗  LV9 2023年5月22日
李亮  LV19 2023年3月6日
dengjunjun  LV15 2023年1月5日
谢谢谢谢谢谢你  LV6 2022年7月19日
aqin_qin  LV1 2022年5月29日
wubinbin  LV11 2022年4月12日
212600  LV7 2022年3月7日
felixsxf  LV5 2022年1月11日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友