286 lines
7.4 KiB
Plaintext
286 lines
7.4 KiB
Plaintext
package com.bonus.question.beans;
|
||
|
||
import com.bonus.grade.beans.gradeBean;
|
||
import com.bonus.operation.Beans.OperationBean;
|
||
import com.bonus.sys.BaseBean;
|
||
import com.bonus.sys.beans.UserBean;
|
||
|
||
import java.util.List;
|
||
|
||
public class QuestionBean extends BaseBean implements java.io.Serializable {
|
||
private static final long serialVersionUID = 1L;
|
||
|
||
private String questionId; //题目id
|
||
private String content; //题干(题目内容)
|
||
private String operation; //选项
|
||
private String questionType; //题目分类(题库id)
|
||
private String questionTypeName; //所属专业完整名称
|
||
private String answer; //正确答案
|
||
private String picUrl; //图片
|
||
private String classification; //题目种类:1单选、2多选、3判断、4填空、5简答、6案例
|
||
private String caseId; //对应案例题id
|
||
private String uploadTime; //上传时间
|
||
private String questionGrade; //题目分值
|
||
private String questionLevel; //题目难度(1简单、2普通、3困难)
|
||
private String material; //案例题材料
|
||
private String type; //点击类型(查看、修改)
|
||
private String ids;
|
||
private int teamzy;//临时判断多少题
|
||
private String standAnswer;//标准答案
|
||
// private String eqId;
|
||
//
|
||
// public String getEqId() {
|
||
// return eqId;
|
||
// }
|
||
//
|
||
// public void setEqId(String eqId) {
|
||
// this.eqId = eqId;
|
||
// }
|
||
|
||
private String questionOperation; //乱序后的选项
|
||
|
||
public String getQuestionOperation() {
|
||
return questionOperation;
|
||
}
|
||
|
||
public void setQuestionOperation(String questionOperation) {
|
||
this.questionOperation = questionOperation;
|
||
}
|
||
|
||
private int eqId;
|
||
|
||
public int getEqId() {
|
||
return eqId;
|
||
}
|
||
|
||
public void setEqId(int eqId) {
|
||
this.eqId = eqId;
|
||
}
|
||
|
||
public String getStandAnswer() {
|
||
return standAnswer;
|
||
}
|
||
|
||
public void setStandAnswer(String standAnswer) {
|
||
this.standAnswer = standAnswer;
|
||
}
|
||
|
||
private String selectAnswer;
|
||
private String trueOperation;
|
||
private String trueAnswer;
|
||
|
||
public String getTrueAnswer() {
|
||
return trueAnswer;
|
||
}
|
||
|
||
public void setTrueAnswer(String trueAnswer) {
|
||
this.trueAnswer = trueAnswer;
|
||
}
|
||
|
||
public String getTrueOperation() {
|
||
return trueOperation;
|
||
}
|
||
|
||
public void setTrueOperation(String trueOperation) {
|
||
this.trueOperation = trueOperation;
|
||
}
|
||
|
||
private String keyword; //关键字(针对案例、简答题)
|
||
|
||
public String getSelectAnswer() {
|
||
return selectAnswer;
|
||
}
|
||
|
||
public void setSelectAnswer(String selectAnswer) {
|
||
this.selectAnswer = selectAnswer;
|
||
}
|
||
|
||
public String getKeyword() {
|
||
return keyword;
|
||
}
|
||
public void setKeyword(String keyword) {
|
||
this.keyword = keyword;
|
||
}
|
||
public int getTeamzy() {
|
||
return teamzy;
|
||
}
|
||
public void setTeamzy(int teamzy) {
|
||
this.teamzy = teamzy;
|
||
}
|
||
|
||
private String examId;
|
||
private String keyWord;
|
||
private List<OperationBean> operationContent;
|
||
private OperationBean oper;
|
||
|
||
private String difficultId;
|
||
private UserBean user;
|
||
|
||
private String fileType;
|
||
|
||
private String standardAnswer; //标准答案
|
||
|
||
private gradeBean grade;
|
||
|
||
public gradeBean getGrade() {
|
||
return grade;
|
||
}
|
||
|
||
public void setGrade(gradeBean grade) {
|
||
this.grade = grade;
|
||
}
|
||
|
||
public String getStandardAnswer() {
|
||
return standardAnswer;
|
||
}
|
||
public void setStandardAnswer(String standardAnswer) {
|
||
this.standardAnswer = standardAnswer;
|
||
}
|
||
public String getFileType() {
|
||
return fileType;
|
||
}
|
||
public void setFileType(String fileType) {
|
||
this.fileType = fileType;
|
||
}
|
||
public UserBean getUser() {
|
||
return user;
|
||
}
|
||
public void setUser(UserBean user) {
|
||
this.user = user;
|
||
}
|
||
public OperationBean getOper() {
|
||
return oper;
|
||
}
|
||
public void setOper(OperationBean oper) {
|
||
this.oper = oper;
|
||
}
|
||
public String getDifficultId() {
|
||
return difficultId;
|
||
}
|
||
public void setDifficultId(String difficultId) {
|
||
this.difficultId = difficultId;
|
||
}
|
||
public String getIds() {
|
||
return ids;
|
||
}
|
||
public void setIds(String ids) {
|
||
this.ids = ids;
|
||
}
|
||
public String getType() {
|
||
return type;
|
||
}
|
||
public void setType(String type) {
|
||
this.type = type;
|
||
}
|
||
public String getExamId() {
|
||
return examId;
|
||
}
|
||
public void setExamId(String examId) {
|
||
this.examId = examId;
|
||
}
|
||
public String getQuestionTypeName() {
|
||
return questionTypeName;
|
||
}
|
||
public void setQuestionTypeName(String questionTypeName) {
|
||
this.questionTypeName = questionTypeName;
|
||
}
|
||
public List<OperationBean> getOperationContent() {
|
||
return operationContent;
|
||
}
|
||
public void setOperationContent(List<OperationBean> operationContent) {
|
||
this.operationContent = operationContent;
|
||
}
|
||
public String getKeyWord() {
|
||
return keyWord;
|
||
}
|
||
public void setKeyWord(String keyWord) {
|
||
this.keyWord = keyWord;
|
||
}
|
||
public String getQuestionId() {
|
||
return questionId;
|
||
}
|
||
public void setQuestionId(String questionId) {
|
||
this.questionId = questionId;
|
||
}
|
||
public String getContent() {
|
||
return content;
|
||
}
|
||
public void setContent(String content) {
|
||
this.content = content;
|
||
}
|
||
public String getOperation() {
|
||
return operation;
|
||
}
|
||
public void setOperation(String operation) {
|
||
this.operation = operation;
|
||
}
|
||
public String getQuestionType() {
|
||
return questionType;
|
||
}
|
||
public void setQuestionType(String questionType) {
|
||
this.questionType = questionType;
|
||
}
|
||
public String getAnswer() {
|
||
return answer;
|
||
}
|
||
public void setAnswer(String answer) {
|
||
this.answer = answer;
|
||
}
|
||
public String getPicUrl() {
|
||
return picUrl;
|
||
}
|
||
public void setPicUrl(String picUrl) {
|
||
this.picUrl = picUrl;
|
||
}
|
||
public String getClassification() {
|
||
return classification;
|
||
}
|
||
public void setClassification(String classification) {
|
||
this.classification = classification;
|
||
}
|
||
public String getCaseId() {
|
||
return caseId;
|
||
}
|
||
public void setCaseId(String caseId) {
|
||
this.caseId = caseId;
|
||
}
|
||
public String getUploadTime() {
|
||
return uploadTime;
|
||
}
|
||
public void setUploadTime(String uploadTime) {
|
||
this.uploadTime = uploadTime;
|
||
}
|
||
public String getQuestionGrade() {
|
||
return questionGrade;
|
||
}
|
||
public void setQuestionGrade(String questionGrade) {
|
||
this.questionGrade = questionGrade;
|
||
}
|
||
public String getQuestionLevel() {
|
||
return questionLevel;
|
||
}
|
||
public void setQuestionLevel(String questionLevel) {
|
||
this.questionLevel = questionLevel;
|
||
}
|
||
public String getMaterial() {
|
||
return material;
|
||
}
|
||
public void setMaterial(String material) {
|
||
this.material = material;
|
||
}
|
||
|
||
@Override
|
||
public String toString() {
|
||
return "QuestionBean [questionId=" + questionId + ", content=" + content + ", operation=" + operation
|
||
+ ", questionType=" + questionType + ", questionTypeName=" + questionTypeName + ", answer=" + answer
|
||
+ ", picUrl=" + picUrl + ", classification=" + classification + ", caseId=" + caseId + ", uploadTime="
|
||
+ uploadTime + ", questionGrade=" + questionGrade + ", questionLevel=" + questionLevel + ", material="
|
||
+ material + ", type=" + type + ", ids=" + ids + ", teamzy=" + teamzy + ", standAnswer=" + standAnswer
|
||
+ ", questionOperation=" + questionOperation + ", eqId=" + eqId + ", selectAnswer=" + selectAnswer
|
||
+ ", trueOperation=" + trueOperation + ", trueAnswer=" + trueAnswer + ", keyword=" + keyword
|
||
+ ", examId=" + examId + ", keyWord=" + keyWord + ", operationContent=" + operationContent + ", oper="
|
||
+ oper + ", difficultId=" + difficultId + ", user=" + user + ", fileType=" + fileType
|
||
+ ", standardAnswer=" + standardAnswer + ", grade=" + grade + "]";
|
||
}
|
||
}
|