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

📄 u04commonlistvo.java

📁 持久层hibernate技术使用的一个例子
💻 JAVA
字号:
package cn.hope.mana.pojo;

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

public class U04CommonListVO implements Serializable{
  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 void setCount(int count){
	  this.count = count;
  }
  public int getStart(){
	  return start;
  }
  public void setStart(int start){
	  this.start = start;
  }
  public int getRange(){
	  return range;
  }
  public void setRange(int range){
	  this.range = range;
  }
  public String getFenye(){
	  return fenye;
  }
  public void setFenye(String fenye){
	  this.fenye = fenye;
  } 
  public int getCurrentPage(){
	  return currentPage;
  }
  public void setCurrentPage(int currentPage){
	  this.currentPage = currentPage;
  }
  public int getTotalPage(){
	  return totalPage;
  }
  public void setTotalPage(int totalPage){
	  this.totalPage = totalPage;
  }
  public int getStartSub(){
	  return startSub;
  }
  public void setStartSub(int startSub){
	  this.startSub = startSub;
  }
  public int getOverSub(){
	  return overSub;
  }
  public void setOverSub(int overSub){
	  this.overSub = overSub;
  }
  public List getRs(){
	  return rs;
  }
  public void setRs(List rs){
	  this.rs = rs;
  }
  public List getCondition(){
	  return condition;
  }
  public void setCondition(List condition){
	  this.condition  = condition;
  }
  
}

⌨️ 快捷键说明

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