📄 questiontypetable.java
字号:
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;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -