📄 questionsubjecttable.java
字号:
package exam.dao;
/**
* QuestionsubjectTable entity. @author MyEclipse Persistence Tools
*/
public class QuestionsubjectTable implements java.io.Serializable {
// Fields
private QuestionsubjectTableId id;
private String questionsubjectname;
private String questionsubjectexplain;
private Integer questionsubjectopenflag;
// Constructors
/** default constructor */
public QuestionsubjectTable() {
}
/** minimal constructor */
public QuestionsubjectTable(QuestionsubjectTableId id) {
this.id = id;
}
/** full constructor */
public QuestionsubjectTable(QuestionsubjectTableId id,
String questionsubjectname, String questionsubjectexplain,
Integer questionsubjectopenflag) {
this.id = id;
this.questionsubjectname = questionsubjectname;
this.questionsubjectexplain = questionsubjectexplain;
this.questionsubjectopenflag = questionsubjectopenflag;
}
// Property accessors
public QuestionsubjectTableId getId() {
return this.id;
}
public void setId(QuestionsubjectTableId id) {
this.id = id;
}
public String getQuestionsubjectname() {
return this.questionsubjectname;
}
public void setQuestionsubjectname(String questionsubjectname) {
this.questionsubjectname = questionsubjectname;
}
public String getQuestionsubjectexplain() {
return this.questionsubjectexplain;
}
public void setQuestionsubjectexplain(String questionsubjectexplain) {
this.questionsubjectexplain = questionsubjectexplain;
}
public Integer getQuestionsubjectopenflag() {
return this.questionsubjectopenflag;
}
public void setQuestionsubjectopenflag(Integer questionsubjectopenflag) {
this.questionsubjectopenflag = questionsubjectopenflag;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -