u01mhelplistvo.java
来自「持久层hibernate技术使用的一个例子」· Java 代码 · 共 36 行
JAVA
36 行
package cn.hope.mana.pojo;
import java.io.Serializable;
import java.util.List;
/**
* @author lijia
*
* TODO To change the template for this generated type comment go to Window -
* Preferences - Java - Code Style - Code Templates
*/
public class U01MHelpListVO implements Serializable {
private List mhelp = null;//对应帮助类型的帮助列表
private MHtype mhtype = null;//帮助类型
private int count;//对应帮助类型的帮助记录数
public int getCount() {
return count;
}
public void setCount(int count) {
this.count = count;
}
public List getMhelp() {
return mhelp;
}
public void setMhelp(List help) {
mhelp = help;
}
public MHtype getMhtype() {
return mhtype;
}
public void setMhtype(MHtype htype) {
mhtype = htype;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?