?? questiontypetable.java
字號(hào):
package exam.dao;
/**
* QuestiontypeTable entity. @author MyEclipse Persistence Tools
*/
public class QuestiontypeTable implements java.io.Serializable {
// Fields
private QuestiontypeTableId id;
private String questiontypename;
private String answermanner;
private String questiontypeexplain;
private Integer questiontypeflag;
// Constructors
/** default constructor */
public QuestiontypeTable() {
}
/** minimal constructor */
public QuestiontypeTable(QuestiontypeTableId id) {
this.id = id;
}
/** full constructor */
public QuestiontypeTable(QuestiontypeTableId id, String questiontypename,
String answermanner, String questiontypeexplain,
Integer questiontypeflag) {
this.id = id;
this.questiontypename = questiontypename;
this.answermanner = answermanner;
this.questiontypeexplain = questiontypeexplain;
this.questiontypeflag = questiontypeflag;
}
// Property accessors
public QuestiontypeTableId getId() {
return this.id;
}
public void setId(QuestiontypeTableId id) {
this.id = id;
}
public String getQuestiontypename() {
return this.questiontypename;
}
public void setQuestiontypename(String questiontypename) {
this.questiontypename = questiontypename;
}
public String getAnswermanner() {
return this.answermanner;
}
public void setAnswermanner(String answermanner) {
this.answermanner = answermanner;
}
public String getQuestiontypeexplain() {
return this.questiontypeexplain;
}
public void setQuestiontypeexplain(String questiontypeexplain) {
this.questiontypeexplain = questiontypeexplain;
}
public Integer getQuestiontypeflag() {
return this.questiontypeflag;
}
public void setQuestiontypeflag(Integer questiontypeflag) {
this.questiontypeflag = questiontypeflag;
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -