📄 departmenttable.java
字号:
package com.xfaccp.form;
import java.util.HashSet;
import java.util.Set;
import com.xfaccp.base.BaseForm;
/**
* DepartmentTable generated by MyEclipse Persistence Tools
*/
public class DepartmentTable extends BaseForm {
// Fields
private String depName;
private Set employeeTables = new HashSet(0);
// Constructors
/** default constructor */
public DepartmentTable() {
}
/** full constructor */
public DepartmentTable(String depName, Set employeeTables) {
this.depName = depName;
this.employeeTables = employeeTables;
}
// Property accessors
public String getDepName() {
return this.depName;
}
public void setDepName(String depName) {
this.depName = depName;
}
public Set getEmployeeTables() {
return this.employeeTables;
}
public void setEmployeeTables(Set employeeTables) {
this.employeeTables = employeeTables;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -