⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 u01commonlistvo.java

📁 持久层hibernate技术使用的一个例子
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -