?? project.java
字號:
package com.icome.entity;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
/**
* Project generated by MyEclipse - Hibernate Tools
*/
public class Project implements java.io.Serializable {
// Fields
private Integer pid;
private Account account;
private String name;
private Date cdt;
private Integer state;
private String developer;
private String about;
private Set memberships = new HashSet(0);
private Set contents = new HashSet(0);
// Constructors
/** default constructor */
public Project() {
}
/** minimal constructor */
public Project(String name) {
this.name = name;
}
/** full constructor */
public Project(Account account, String name, Date cdt, Integer state, String developer, String about, Set memberships, Set contents) {
this.account = account;
this.name = name;
this.cdt = cdt;
this.state = state;
this.developer = developer;
this.about = about;
this.memberships = memberships;
this.contents = contents;
}
// Property accessors
public Integer getPid() {
return this.pid;
}
private void setPid(Integer pid) {
this.pid = pid;
}
public Account getAccount() {
return this.account;
}
public void setAccount(Account account) {
this.account = account;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public Date getCdt() {
return this.cdt;
}
public void setCdt(Date cdt) {
this.cdt = cdt;
}
public Integer getState() {
return this.state;
}
public void setState(Integer state) {
this.state = state;
}
public String getDeveloper() {
return this.developer;
}
public void setDeveloper(String developer) {
this.developer = developer;
}
public String getAbout() {
return this.about;
}
public void setAbout(String about) {
this.about = about;
}
public Set getMemberships() {
return this.memberships;
}
public void setMemberships(Set memberships) {
this.memberships = memberships;
}
public Set getContents() {
return this.contents;
}
public void setContents(Set contents) {
this.contents = contents;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -