📄 test.java
字号:
package org.mychange.obj;
import java.util.Date;
/**
* Test generated by MyEclipse Persistence Tools
*/
public class Test implements java.io.Serializable {
// Fields
private Integer id;
private Integer rfcId;
private String executer;
private Date testTime;
private Float totalTime;
private String result;
private String opinion;
// Constructors
/** default constructor */
public Test() {
}
/** minimal constructor */
public Test(Integer rfcId, String executer, Date testTime, Float totalTime,
String result) {
this.rfcId = rfcId;
this.executer = executer;
this.testTime = testTime;
this.totalTime = totalTime;
this.result = result;
}
/** full constructor */
public Test(Integer rfcId, String executer, Date testTime, Float totalTime,
String result, String opinion) {
this.rfcId = rfcId;
this.executer = executer;
this.testTime = testTime;
this.totalTime = totalTime;
this.result = result;
this.opinion = opinion;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getRfcId() {
return this.rfcId;
}
public void setRfcId(Integer rfcId) {
this.rfcId = rfcId;
}
public String getExecuter() {
return this.executer;
}
public void setExecuter(String executer) {
this.executer = executer;
}
public Date getTestTime() {
return this.testTime;
}
public void setTestTime(Date testTime) {
this.testTime = testTime;
}
public Float getTotalTime() {
return this.totalTime;
}
public void setTotalTime(Float totalTime) {
this.totalTime = totalTime;
}
public String getResult() {
return this.result;
}
public void setResult(String result) {
this.result = result;
}
public String getOpinion() {
return this.opinion;
}
public void setOpinion(String opinion) {
this.opinion = opinion;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -