page.java

来自「固定资产管理系统 资产的增删改查 借出 管理 自动报废 统计功能等等」· Java 代码 · 共 62 行

JAVA
62
字号
/** *  */package com.qrsx.asset.model;/** * @author 马利永 * */public class Page {	private Integer totalpage; //总页数	private Integer total;     //总记录数	private Integer currentpage; //但前页数	private static Integer size=3;		 //每页显示记录数,由此定义好			/**	 * @return the totalpage	 */	public Integer getTotalpage() {		return totalpage;	}	/**	 * @param totalpage the totalpage to set	 */	public void setTotalpage(Integer totalpage) {		this.totalpage = totalpage;	}	/**	 * @return the total	 */	public Integer getTotal() {		return total;	}	/**	 * @param total the total to set	 */	public void setTotal(Integer total) {		this.total = total;	}	/**	 * @return the currentpage	 */	public Integer getCurrentpage() {		return currentpage;	}	/**	 * @param currentpage the currentpage to set	 */	public void setCurrentpage(Integer currentpage) {		this.currentpage = currentpage;	}	/**	 * @return the size	 */	public Integer getSize() {		return size;	}	}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?