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

📄 u01mhelplistvo.java

📁 持久层hibernate技术使用的一个例子
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -