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