package com.mindskip.xzs.domain;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @version 2.2.0
|
* @description: 答题信息
|
* Copyright (C), 2020-2021, 武汉思维跳跃科技有限公司
|
* @date 2021 /9/7 9:45
|
*/
|
public class ExamPaperQuestionCustomerAnswer implements Serializable {
|
|
private static final long serialVersionUID = 3389482731220342366L;
|
|
private Integer id;
|
|
/**
|
* 题目id
|
*/
|
private Integer questionId;
|
|
/**
|
* 试卷id
|
*/
|
private Integer examPaperId;
|
|
/**
|
* 答卷id
|
*/
|
private Integer examPaperAnswerId;
|
|
/**
|
* 题目类型
|
*/
|
private Integer questionType;
|
|
/**
|
* 学科
|
*/
|
private Integer subjectId;
|
|
/**
|
* 得分
|
*/
|
private Integer customerScore;
|
|
/**
|
* 题目分数
|
*/
|
private Integer questionScore;
|
|
/**
|
* 题目内容
|
*/
|
private Integer questionTextContentId;
|
|
/**
|
* 答题内容
|
*/
|
private String answer;
|
|
/**
|
* 答题内容
|
*/
|
private Integer textContentId;
|
|
/**
|
* 是否正确
|
*/
|
private Boolean doRight;
|
|
/**
|
* 创建人
|
*/
|
private Integer createUser;
|
|
/**
|
* 创建时间
|
*/
|
private Date createTime;
|
|
/**
|
* 排序
|
*/
|
private Integer itemOrder;
|
|
/**
|
* Gets id.
|
*
|
* @return the id
|
*/
|
public Integer getId() {
|
return id;
|
}
|
|
/**
|
* Sets id.
|
*
|
* @param id the id
|
*/
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
/**
|
* Gets question id.
|
*
|
* @return the question id
|
*/
|
public Integer getQuestionId() {
|
return questionId;
|
}
|
|
/**
|
* Sets question id.
|
*
|
* @param questionId the question id
|
*/
|
public void setQuestionId(Integer questionId) {
|
this.questionId = questionId;
|
}
|
|
/**
|
* Gets exam paper id.
|
*
|
* @return the exam paper id
|
*/
|
public Integer getExamPaperId() {
|
return examPaperId;
|
}
|
|
/**
|
* Sets exam paper id.
|
*
|
* @param examPaperId the exam paper id
|
*/
|
public void setExamPaperId(Integer examPaperId) {
|
this.examPaperId = examPaperId;
|
}
|
|
/**
|
* Gets exam paper answer id.
|
*
|
* @return the exam paper answer id
|
*/
|
public Integer getExamPaperAnswerId() {
|
return examPaperAnswerId;
|
}
|
|
/**
|
* Sets exam paper answer id.
|
*
|
* @param examPaperAnswerId the exam paper answer id
|
*/
|
public void setExamPaperAnswerId(Integer examPaperAnswerId) {
|
this.examPaperAnswerId = examPaperAnswerId;
|
}
|
|
/**
|
* Gets question type.
|
*
|
* @return the question type
|
*/
|
public Integer getQuestionType() {
|
return questionType;
|
}
|
|
/**
|
* Sets question type.
|
*
|
* @param questionType the question type
|
*/
|
public void setQuestionType(Integer questionType) {
|
this.questionType = questionType;
|
}
|
|
/**
|
* Gets subject id.
|
*
|
* @return the subject id
|
*/
|
public Integer getSubjectId() {
|
return subjectId;
|
}
|
|
/**
|
* Sets subject id.
|
*
|
* @param subjectId the subject id
|
*/
|
public void setSubjectId(Integer subjectId) {
|
this.subjectId = subjectId;
|
}
|
|
/**
|
* Gets customer score.
|
*
|
* @return the customer score
|
*/
|
public Integer getCustomerScore() {
|
return customerScore;
|
}
|
|
/**
|
* Sets customer score.
|
*
|
* @param customerScore the customer score
|
*/
|
public void setCustomerScore(Integer customerScore) {
|
this.customerScore = customerScore;
|
}
|
|
/**
|
* Gets question score.
|
*
|
* @return the question score
|
*/
|
public Integer getQuestionScore() {
|
return questionScore;
|
}
|
|
/**
|
* Sets question score.
|
*
|
* @param questionScore the question score
|
*/
|
public void setQuestionScore(Integer questionScore) {
|
this.questionScore = questionScore;
|
}
|
|
/**
|
* Gets question text content id.
|
*
|
* @return the question text content id
|
*/
|
public Integer getQuestionTextContentId() {
|
return questionTextContentId;
|
}
|
|
/**
|
* Sets question text content id.
|
*
|
* @param questionTextContentId the question text content id
|
*/
|
public void setQuestionTextContentId(Integer questionTextContentId) {
|
this.questionTextContentId = questionTextContentId;
|
}
|
|
/**
|
* Gets answer.
|
*
|
* @return the answer
|
*/
|
public String getAnswer() {
|
return answer;
|
}
|
|
/**
|
* Sets answer.
|
*
|
* @param answer the answer
|
*/
|
public void setAnswer(String answer) {
|
this.answer = answer == null ? null : answer.trim();
|
}
|
|
/**
|
* Gets text content id.
|
*
|
* @return the text content id
|
*/
|
public Integer getTextContentId() {
|
return textContentId;
|
}
|
|
/**
|
* Sets text content id.
|
*
|
* @param textContentId the text content id
|
*/
|
public void setTextContentId(Integer textContentId) {
|
this.textContentId = textContentId;
|
}
|
|
/**
|
* Gets do right.
|
*
|
* @return the do right
|
*/
|
public Boolean getDoRight() {
|
return doRight;
|
}
|
|
/**
|
* Sets do right.
|
*
|
* @param doRight the do right
|
*/
|
public void setDoRight(Boolean doRight) {
|
this.doRight = doRight;
|
}
|
|
/**
|
* Gets create user.
|
*
|
* @return the create user
|
*/
|
public Integer getCreateUser() {
|
return createUser;
|
}
|
|
/**
|
* Sets create user.
|
*
|
* @param createUser the create user
|
*/
|
public void setCreateUser(Integer createUser) {
|
this.createUser = createUser;
|
}
|
|
/**
|
* Gets create time.
|
*
|
* @return the create time
|
*/
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
/**
|
* Sets create time.
|
*
|
* @param createTime the create time
|
*/
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
/**
|
* Gets item order.
|
*
|
* @return the item order
|
*/
|
public Integer getItemOrder() {
|
return itemOrder;
|
}
|
|
/**
|
* Sets item order.
|
*
|
* @param itemOrder the item order
|
*/
|
public void setItemOrder(Integer itemOrder) {
|
this.itemOrder = itemOrder;
|
}
|
}
|