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

📄 u07commonlistvo.java

📁 持久层hibernate技术使用的一个例子
💻 JAVA
字号:
/*
 * Created on 2004-11-19
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
package cn.hope.mana.pojo;

import java.io.Serializable;

import java.util.List;

/**
 * @author zhaogang
 * 
 * TODO To change the template for this generated type comment go to Window -
 * Preferences - Java - Code Style - Code Templates
 */
public class U07CommonListVO implements Serializable {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	private List rs = null;

	private List condition = null;

	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(List condition) {
		this.condition = condition;
	}

	public List 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 + -