?? 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 + -