projectinf.java
来自「Struts+Hibernate实现软件缺陷的跟踪管理」· Java 代码 · 共 78 行
JAVA
78 行
package xing.five.beans;
import java.util.Date;
/**
* ProjectInf generated by MyEclipse - Hibernate Tools
*/
public class ProjectInf implements java.io.Serializable {
// Fields
private Integer id;
private String name;
private Date BDate;
private Date EDate;
// Constructors
/** default constructor */
public ProjectInf() {
}
/** full constructor */
public ProjectInf(String name, Date BDate, Date EDate) {
this.name = name;
this.BDate = BDate;
this.EDate = EDate;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public Date getBDate() {
return this.BDate;
}
public void setBDate(Date BDate) {
this.BDate = BDate;
}
public Date getEDate() {
return this.EDate;
}
public void setEDate(Date EDate) {
this.EDate = EDate;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?