225 lines
5.2 KiB
Plaintext
225 lines
5.2 KiB
Plaintext
package com.bonus.score.beans;
|
|
|
|
import com.bonus.sys.BaseBean;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.List;
|
|
|
|
public class ExamQuestionBean extends BaseBean implements Serializable {
|
|
|
|
private static final long serializable = 1L;
|
|
|
|
private String examId;
|
|
|
|
private String examName;
|
|
|
|
private String questionId;
|
|
|
|
// 问题题目
|
|
private String questionTitle;
|
|
|
|
// 问题选项(乱序后的)
|
|
private String questionOption;
|
|
|
|
// 问题选项(乱序前的)
|
|
private String operation;
|
|
|
|
// 考试人Id
|
|
private String examUser;
|
|
|
|
// 考试人name
|
|
private String userName;
|
|
|
|
// 题目答案
|
|
private String answer;
|
|
|
|
// 题目正确答案
|
|
private String trueAnswer;
|
|
|
|
// 题目得分
|
|
private String grade;
|
|
|
|
// 题目类型
|
|
private String classification;
|
|
|
|
private String standAnswer;
|
|
|
|
private List<ExamQuestionBean> sinList;
|
|
private List<ExamQuestionBean> mulList;
|
|
private List<ExamQuestionBean> judgeList;
|
|
private List<ExamQuestionBean> comList;
|
|
private List<ExamQuestionBean> shortList;
|
|
private List<ExamQuestionBean> caseList;
|
|
|
|
|
|
public String getStandAnswer() {
|
|
return standAnswer;
|
|
}
|
|
|
|
public void setStandAnswer(String standAnswer) {
|
|
this.standAnswer = standAnswer;
|
|
}
|
|
|
|
public List<ExamQuestionBean> getSinList() {
|
|
return sinList;
|
|
}
|
|
|
|
public void setSinList(List<ExamQuestionBean> sinList) {
|
|
this.sinList = sinList;
|
|
}
|
|
|
|
public List<ExamQuestionBean> getMulList() {
|
|
return mulList;
|
|
}
|
|
|
|
public void setMulList(List<ExamQuestionBean> mulList) {
|
|
this.mulList = mulList;
|
|
}
|
|
|
|
public List<ExamQuestionBean> getJudgeList() {
|
|
return judgeList;
|
|
}
|
|
|
|
public void setJudgeList(List<ExamQuestionBean> judgeList) {
|
|
this.judgeList = judgeList;
|
|
}
|
|
|
|
public List<ExamQuestionBean> getComList() {
|
|
return comList;
|
|
}
|
|
|
|
public void setComList(List<ExamQuestionBean> comList) {
|
|
this.comList = comList;
|
|
}
|
|
|
|
public List<ExamQuestionBean> getShortList() {
|
|
return shortList;
|
|
}
|
|
|
|
public void setShortList(List<ExamQuestionBean> shortList) {
|
|
this.shortList = shortList;
|
|
}
|
|
|
|
public List<ExamQuestionBean> getCaseList() {
|
|
return caseList;
|
|
}
|
|
|
|
public void setCaseList(List<ExamQuestionBean> caseList) {
|
|
this.caseList = caseList;
|
|
}
|
|
|
|
public String getExamId() {
|
|
return examId;
|
|
}
|
|
|
|
public void setExamId(String examId) {
|
|
this.examId = examId;
|
|
}
|
|
|
|
public String getExamName() {
|
|
return examName;
|
|
}
|
|
|
|
public void setExamName(String examName) {
|
|
this.examName = examName;
|
|
}
|
|
|
|
public String getQuestionId() {
|
|
return questionId;
|
|
}
|
|
|
|
public void setQuestionId(String questionId) {
|
|
this.questionId = questionId;
|
|
}
|
|
|
|
public String getQuestionTitle() {
|
|
return questionTitle;
|
|
}
|
|
|
|
public void setQuestionTitle(String questionTitle) {
|
|
this.questionTitle = questionTitle;
|
|
}
|
|
|
|
public String getQuestionOption() {
|
|
return questionOption;
|
|
}
|
|
|
|
public void setQuestionOption(String questionOption) {
|
|
this.questionOption = questionOption;
|
|
}
|
|
|
|
public String getOperation() {
|
|
return operation;
|
|
}
|
|
|
|
public void setOperation(String operation) {
|
|
this.operation = operation;
|
|
}
|
|
|
|
public String getExamUser() {
|
|
return examUser;
|
|
}
|
|
|
|
public void setExamUser(String examUser) {
|
|
this.examUser = examUser;
|
|
}
|
|
|
|
public String getUserName() {
|
|
return userName;
|
|
}
|
|
|
|
public void setUserName(String userName) {
|
|
this.userName = userName;
|
|
}
|
|
|
|
public String getAnswer() {
|
|
return answer;
|
|
}
|
|
|
|
public void setAnswer(String answer) {
|
|
this.answer = answer;
|
|
}
|
|
|
|
public String getTrueAnswer() {
|
|
return trueAnswer;
|
|
}
|
|
|
|
public void setTrueAnswer(String trueAnswer) {
|
|
this.trueAnswer = trueAnswer;
|
|
}
|
|
|
|
public String getGrade() {
|
|
return grade;
|
|
}
|
|
|
|
public void setGrade(String grade) {
|
|
this.grade = grade;
|
|
}
|
|
|
|
public String getClassification() {
|
|
return classification;
|
|
}
|
|
|
|
public void setClassification(String classification) {
|
|
this.classification = classification;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "ExamQuestionBean{" +
|
|
"examId='" + examId + '\'' +
|
|
", examName='" + examName + '\'' +
|
|
", questionId='" + questionId + '\'' +
|
|
", questionTitle='" + questionTitle + '\'' +
|
|
", questionOption='" + questionOption + '\'' +
|
|
", operation='" + operation + '\'' +
|
|
", examUser='" + examUser + '\'' +
|
|
", userName='" + userName + '\'' +
|
|
", answer='" + answer + '\'' +
|
|
", trueAnswer='" + trueAnswer + '\'' +
|
|
", grade='" + grade + '\'' +
|
|
", classification='" + classification + '\'' +
|
|
'}';
|
|
}
|
|
}
|