u01commonlistvo.java

来自「持久层hibernate技术使用的一个例子」· Java 代码 · 共 113 行

JAVA
113
字号
package cn.hope.mana.pojo;

import java.io.Serializable;
import java.util.List;

public class U01CommonListVO implements Serializable {
/*
 * Created on 2004-11-19
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
	private List rs = null;

	private Object condition = null;//用来存放上次请求的Form
	
	private int start;
	
	private int range;
	
	private int count;
	
	private String fenye;
	
	private int currentPage;
	
	private int totalPage;
	
	private int startSub;
	
	private int overSub;
	
	public int getCount() {
		return count;
	}
	
	public int getRange() {
		return range;
	}
	
	public int getStart() {
		return start;
	}
	
	public void setCount(int count) {
		this.count = count;
	}
	
	public void setRange(int range) {
		this.range = range;
	}
	
	public void setStart(int start) {
		this.start = start;
	}
	
	public void setRs(List rs) {
		this.rs = rs;
	}
	
	public List getRs() {
		return (this.rs);
	}
	
	public void setCondition(Object condition) {
		this.condition = condition;
	}
	
	public Object getCondition() {
		return (this.condition);
	}
	
	public void setFenye(String fenye) {
		this.fenye = fenye;
	}
	
	public String getFenye() {
		return fenye;
	}
	
	public void setCurrentPage(int currentPage) {
		this.currentPage = currentPage;
	}
	
	public int getCurrentPage() {
		return currentPage;
	}
	
	public void setTotalPage(int totalPage) {
		this.totalPage = totalPage;
	}
	
	public int getTotalPage() {
		return totalPage;
	}
	
	public void setStartSub(int startSub) {
		this.startSub = startSub;
	}
	
	public int getStartSub() {
		return startSub;
	}
	
	public void setOverSub(int overSub) {
		this.overSub = overSub;
	}
	
	public int getOverSub() {
		return overSub;
	}
}

⌨️ 快捷键说明

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