?? testpapertable.java
字號:
package exam.dao;
/**
* TestpaperTable entity. @author MyEclipse Persistence Tools
*/
public class TestpaperTable implements java.io.Serializable {
// Fields
private TestpaperTableId id;
private String testpapername;
private String testpaperexplain;
private String testpapertype;
private Integer questiontypeid;
private Integer questionboundid;
private Integer questionsubjectid;
private String onecaptionexam;
private Integer questionnumbers;
// Constructors
/** default constructor */
public TestpaperTable() {
}
/** minimal constructor */
public TestpaperTable(TestpaperTableId id) {
this.id = id;
}
/** full constructor */
public TestpaperTable(TestpaperTableId id, String testpapername,
String testpaperexplain, String testpapertype,
Integer questiontypeid, Integer questionboundid,
Integer questionsubjectid, String onecaptionexam,
Integer questionnumbers) {
this.id = id;
this.testpapername = testpapername;
this.testpaperexplain = testpaperexplain;
this.testpapertype = testpapertype;
this.questiontypeid = questiontypeid;
this.questionboundid = questionboundid;
this.questionsubjectid = questionsubjectid;
this.onecaptionexam = onecaptionexam;
this.questionnumbers = questionnumbers;
}
// Property accessors
public TestpaperTableId getId() {
return this.id;
}
public void setId(TestpaperTableId id) {
this.id = id;
}
public String getTestpapername() {
return this.testpapername;
}
public void setTestpapername(String testpapername) {
this.testpapername = testpapername;
}
public String getTestpaperexplain() {
return this.testpaperexplain;
}
public void setTestpaperexplain(String testpaperexplain) {
this.testpaperexplain = testpaperexplain;
}
public String getTestpapertype() {
return this.testpapertype;
}
public void setTestpapertype(String testpapertype) {
this.testpapertype = testpapertype;
}
public Integer getQuestiontypeid() {
return this.questiontypeid;
}
public void setQuestiontypeid(Integer questiontypeid) {
this.questiontypeid = questiontypeid;
}
public Integer getQuestionboundid() {
return this.questionboundid;
}
public void setQuestionboundid(Integer questionboundid) {
this.questionboundid = questionboundid;
}
public Integer getQuestionsubjectid() {
return this.questionsubjectid;
}
public void setQuestionsubjectid(Integer questionsubjectid) {
this.questionsubjectid = questionsubjectid;
}
public String getOnecaptionexam() {
return this.onecaptionexam;
}
public void setOnecaptionexam(String onecaptionexam) {
this.onecaptionexam = onecaptionexam;
}
public Integer getQuestionnumbers() {
return this.questionnumbers;
}
public void setQuestionnumbers(Integer questionnumbers) {
this.questionnumbers = questionnumbers;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -