questionsubjecttable.java
来自「在线考试系统」· Java 代码 · 共 71 行
JAVA
71 行
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 + =
减小字号Ctrl + -
显示快捷键?