📄 question.java
字号:
package examonline.beans;
import java.io.*;
public class Question
implements Serializable {
private int id;
private String detail;
private String standardAnswer;
private String choices;
private int level;
private String note;
private String type;
private int score;
public int getScore() {
return score;
}
public void setScore(int score) {
this.score = score;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public Question() {
try {
jbInit();
}
catch (Exception ex) {
ex.printStackTrace();
}
}
public void setId(int id) {
this.id = id;
}
public void setDetail(String detail) {
this.detail = detail;
}
public void setStandardAnswer(String standardAnswer) {
this.standardAnswer = standardAnswer;
}
public void setChoices(String choices) {
this.choices = choices;
}
public void setLevel(int level) {
this.level = level;
}
public void setNote(String note) {
this.note = note;
}
public int getId() {
return id;
}
public String getDetail() {
return detail;
}
public String getStandardAnswer() {
return standardAnswer;
}
public String getChoices() {
return choices;
}
public int getLevel() {
return level;
}
public String getNote() {
return note;
}
private void jbInit() throws Exception {
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -