department.java
来自「白广元写的java web整合开发完全自学手册的源代码」· Java 代码 · 共 68 行
JAVA
68 行
package hibernate3.object;
import java.util.HashSet;
import java.util.Set;
/**
* Department entity.
*
* @author MyEclipse Persistence Tools
*/
public class Department implements java.io.Serializable {
// Fields
private Integer partId;
private String name;
private Set employees = new HashSet();
// Constructors
/** default constructor */
public Department() {
}
/** full constructor */
public Department(String name) {
this.name = name;
}
// Property accessors
public Integer getPartId() {
return this.partId;
}
public void setPartId(Integer partId) {
this.partId = partId;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
/**
* @return the employees
*/
public Set getEmployees() {
return employees;
}
/**
* @param employees the employees to set
*/
public void setEmployees(Set employees) {
this.employees = employees;
}
public String toString(){
return "Department:["+name+"]";
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?