📄 ttest.java
字号:
package cn.hope.front.pojo;
import java.io.Serializable;
import java.util.Set;
import org.apache.commons.lang.builder.ToStringBuilder;
/** @author Hibernate CodeGenerator */
public class TTest implements Serializable {
/** identifier field */
private Integer TId1;
/** persistent field */
private String flag;
/** persistent field */
private int TQuestionspoint;
/** nullable persistent field */
private cn.hope.front.pojo.TTestInfo TTestInfo;
/** nullable persistent field */
private cn.hope.front.pojo.TQuestion TQuestion;
/** persistent field */
private Set SResults;
/** full constructor */
public TTest(String flag, int TQuestionspoint, cn.hope.front.pojo.TTestInfo TTestInfo, cn.hope.front.pojo.TQuestion TQuestion, Set SResults) {
this.flag = flag;
this.TQuestionspoint = TQuestionspoint;
this.TTestInfo = TTestInfo;
this.TQuestion = TQuestion;
this.SResults = SResults;
}
/** default constructor */
public TTest() {
}
/** minimal constructor */
public TTest(String flag, int TQuestionspoint, Set SResults) {
this.flag = flag;
this.TQuestionspoint = TQuestionspoint;
this.SResults = SResults;
}
public Integer getTId1() {
return this.TId1;
}
public void setTId1(Integer TId1) {
this.TId1 = TId1;
}
public String getFlag() {
return this.flag;
}
public void setFlag(String flag) {
this.flag = flag;
}
public int getTQuestionspoint() {
return this.TQuestionspoint;
}
public void setTQuestionspoint(int TQuestionspoint) {
this.TQuestionspoint = TQuestionspoint;
}
public cn.hope.front.pojo.TTestInfo getTTestInfo() {
return this.TTestInfo;
}
public void setTTestInfo(cn.hope.front.pojo.TTestInfo TTestInfo) {
this.TTestInfo = TTestInfo;
}
public cn.hope.front.pojo.TQuestion getTQuestion() {
return this.TQuestion;
}
public void setTQuestion(cn.hope.front.pojo.TQuestion TQuestion) {
this.TQuestion = TQuestion;
}
public Set getSResults() {
return this.SResults;
}
public void setSResults(Set SResults) {
this.SResults = SResults;
}
public String toString() {
return new ToStringBuilder(this)
.append("TId1", getTId1())
.toString();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -