?? project.java
字號:
package test.m2m.pojo;
import java.util.HashSet;
import java.util.Set;
/**
* Project entity.
*
* @author MyEclipse Persistence Tools
*/
public class Project implements java.io.Serializable {
// Fields
private Integer pid;
private String pname;
private String pdesc;
private Set employees = new HashSet(0);
// Constructors
/** default constructor */
public Project() {
}
/** minimal constructor */
public Project(Integer pid) {
this.pid = pid;
}
/** full constructor */
public Project(Integer pid, String pname, String pdesc, Set employees) {
this.pid = pid;
this.pname = pname;
this.pdesc = pdesc;
this.employees = employees;
}
// Property accessors
public Integer getPid() {
return this.pid;
}
public void setPid(Integer pid) {
this.pid = pid;
}
public String getPname() {
return this.pname;
}
public void setPname(String pname) {
this.pname = pname;
}
public String getPdesc() {
return this.pdesc;
}
public void setPdesc(String pdesc) {
this.pdesc = pdesc;
}
public Set getEmployees() {
return this.employees;
}
public void setEmployees(Set employees) {
this.employees = employees;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -