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

📄 dep.java

📁 struts+hibernate做的一个程序
💻 JAVA
字号:
package com.po;

import java.util.HashSet;
import java.util.Set;

/**
 * Dep generated by MyEclipse Persistence Tools
 */

public class Dep implements java.io.Serializable {

	// Fields

	private Integer depid;

	private String depname;

	private Set emps = new HashSet(0);

	// Constructors

	/** default constructor */
	public Dep() {
	}

	/** full constructor */
	public Dep(String depname, Set emps) {
		this.depname = depname;
		this.emps = emps;
	}

	// Property accessors

	public Integer getDepid() {
		return this.depid;
	}

	public void setDepid(Integer depid) {
		this.depid = depid;
	}

	public String getDepname() {
		return this.depname;
	}

	public void setDepname(String depname) {
		this.depname = depname;
	}

	public Set getEmps() {
		return this.emps;
	}

	public void setEmps(Set emps) {
		this.emps = emps;
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -