📄 resultsetquerybypage.java
字号:
package com.prinice.jfoot.util.dbo;
/**
* @author:Leo
* @version:1.0
* @description:该类用于构造分页查询的返回结果
* @date:2008-2-19
*/
import java.sql.*;
public class ResultSetQueryByPage {
//private ArrayList<LinkedHashMap> alQueryByPage = null;//该分页的记录
private int totalSize = 0;//该查询的总记录数
private ResultSet rsQueryByPage = null;//该分页的记录
/*
public ArrayList<LinkedHashMap> getAlQueryByPage(){
return this.alQueryByPage;
}
public void setAlQueryByPage(ArrayList<LinkedHashMap> al){
this.alQueryByPage = al;
}
*/
public int getTotalSize(){
return this.totalSize;
}
public void setTotalSize(int totalSize){
this.totalSize = totalSize;
}
public ResultSet getRsQueryByPage(){
return this.rsQueryByPage;
}
public void setRsQueryByPage(ResultSet rs){
this.rsQueryByPage = rs;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -