📄 fenbean.java
字号:
package com.ascenttech.hib.help;
import java.util.*;
import com.ascenttech.hib.po.MessageIn;
public class FenBean {
private int maxRowCount;//一共多少行
private List list;//本叶要显示的资料
private FenBean fb;
private MessageIn mi;
public FenBean(MessageIn mi,FenBean fb) {
super();
// TODO Auto-generated constructor stub
this.mi=mi;
this.fb=fb;
}
public FenBean() {
super();
// TODO Auto-generated constructor stub
}
public FenBean(List list, int count) {
super();
// TODO Auto-generated constructor stub
this.list = list;
maxRowCount = count;
}
public List getList() {
return list;
}
public void setList(List list) {
this.list = list;
}
public int getMaxRowCount() {
return maxRowCount;
}
public void setMaxRowCount(int maxRowCount) {
this.maxRowCount = maxRowCount;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -