| | |
| | | package com.ycl.jxkg.domain; |
| | | |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | @Data |
| | | public class ExamPaperQuestionCustomerAnswer implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 3389482731220342366L; |
| | |
| | | |
| | | private Integer itemOrder; |
| | | |
| | | public Integer getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(Integer id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Integer getQuestionId() { |
| | | return questionId; |
| | | } |
| | | |
| | | public void setQuestionId(Integer questionId) { |
| | | this.questionId = questionId; |
| | | } |
| | | |
| | | public Integer getExamPaperId() { |
| | | return examPaperId; |
| | | } |
| | | |
| | | public void setExamPaperId(Integer examPaperId) { |
| | | this.examPaperId = examPaperId; |
| | | } |
| | | |
| | | public Integer getExamPaperAnswerId() { |
| | | return examPaperAnswerId; |
| | | } |
| | | |
| | | public void setExamPaperAnswerId(Integer examPaperAnswerId) { |
| | | this.examPaperAnswerId = examPaperAnswerId; |
| | | } |
| | | |
| | | public Integer getQuestionType() { |
| | | return questionType; |
| | | } |
| | | |
| | | public void setQuestionType(Integer questionType) { |
| | | this.questionType = questionType; |
| | | } |
| | | |
| | | public Integer getSubjectId() { |
| | | return subjectId; |
| | | } |
| | | |
| | | public void setSubjectId(Integer subjectId) { |
| | | this.subjectId = subjectId; |
| | | } |
| | | |
| | | public Integer getCustomerScore() { |
| | | return customerScore; |
| | | } |
| | | |
| | | public void setCustomerScore(Integer customerScore) { |
| | | this.customerScore = customerScore; |
| | | } |
| | | |
| | | public Integer getQuestionScore() { |
| | | return questionScore; |
| | | } |
| | | |
| | | public void setQuestionScore(Integer questionScore) { |
| | | this.questionScore = questionScore; |
| | | } |
| | | |
| | | public Integer getQuestionTextContentId() { |
| | | return questionTextContentId; |
| | | } |
| | | |
| | | public void setQuestionTextContentId(Integer questionTextContentId) { |
| | | this.questionTextContentId = questionTextContentId; |
| | | } |
| | | |
| | | public String getAnswer() { |
| | | return answer; |
| | | } |
| | | |
| | | public void setAnswer(String answer) { |
| | | this.answer = answer == null ? null : answer.trim(); |
| | | } |
| | | |
| | | public Integer getTextContentId() { |
| | | return textContentId; |
| | | } |
| | | |
| | | public void setTextContentId(Integer textContentId) { |
| | | this.textContentId = textContentId; |
| | | } |
| | | |
| | | public Boolean getDoRight() { |
| | | return doRight; |
| | | } |
| | | |
| | | public void setDoRight(Boolean doRight) { |
| | | this.doRight = doRight; |
| | | } |
| | | |
| | | public Integer getCreateUser() { |
| | | return createUser; |
| | | } |
| | | |
| | | public void setCreateUser(Integer createUser) { |
| | | this.createUser = createUser; |
| | | } |
| | | |
| | | public Date getCreateTime() { |
| | | return createTime; |
| | | } |
| | | |
| | | public void setCreateTime(Date createTime) { |
| | | this.createTime = createTime; |
| | | } |
| | | |
| | | public Integer getItemOrder() { |
| | | return itemOrder; |
| | | } |
| | | |
| | | public void setItemOrder(Integer itemOrder) { |
| | | this.itemOrder = itemOrder; |
| | | } |
| | | } |