| | |
| | | |
| | | import com.mindskip.xzs.domain.QuestionSubject; |
| | | import com.mindskip.xzs.viewmodel.BaseVM; |
| | | import lombok.Data; |
| | | |
| | | import java.util.List; |
| | | |
| | | |
| | | @Data |
| | | public class QuestionResponseVM extends BaseVM { |
| | | |
| | | private Integer id; |
| | |
| | | |
| | | private List<QuestionSubject> questionSubjects; |
| | | |
| | | public Integer getId() { |
| | | return id; |
| | | } |
| | | /** 所属部门名字 */ |
| | | private String deptNames; |
| | | |
| | | public void setId(Integer id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Integer getQuestionType() { |
| | | return questionType; |
| | | } |
| | | |
| | | public void setQuestionType(Integer questionType) { |
| | | this.questionType = questionType; |
| | | } |
| | | |
| | | public Integer getTextContentId() { |
| | | return textContentId; |
| | | } |
| | | |
| | | public void setTextContentId(Integer textContentId) { |
| | | this.textContentId = textContentId; |
| | | } |
| | | |
| | | public String getCreateTime() { |
| | | return createTime; |
| | | } |
| | | |
| | | public void setCreateTime(String createTime) { |
| | | this.createTime = createTime; |
| | | } |
| | | |
| | | public Integer getSubjectId() { |
| | | return subjectId; |
| | | } |
| | | |
| | | public void setSubjectId(Integer subjectId) { |
| | | this.subjectId = subjectId; |
| | | } |
| | | |
| | | public Integer getCreateUser() { |
| | | return createUser; |
| | | } |
| | | |
| | | public void setCreateUser(Integer createUser) { |
| | | this.createUser = createUser; |
| | | } |
| | | |
| | | public String getScore() { |
| | | return score; |
| | | } |
| | | |
| | | public void setScore(String score) { |
| | | this.score = score; |
| | | } |
| | | |
| | | public Integer getStatus() { |
| | | return status; |
| | | } |
| | | |
| | | public void setStatus(Integer status) { |
| | | this.status = status; |
| | | } |
| | | |
| | | public String getCorrect() { |
| | | return correct; |
| | | } |
| | | |
| | | public void setCorrect(String correct) { |
| | | this.correct = correct; |
| | | } |
| | | |
| | | public Integer getAnalyzeTextContentId() { |
| | | return analyzeTextContentId; |
| | | } |
| | | |
| | | public void setAnalyzeTextContentId(Integer analyzeTextContentId) { |
| | | this.analyzeTextContentId = analyzeTextContentId; |
| | | } |
| | | |
| | | public Integer getDifficult() { |
| | | return difficult; |
| | | } |
| | | |
| | | public void setDifficult(Integer difficult) { |
| | | this.difficult = difficult; |
| | | } |
| | | |
| | | public String getShortTitle() { |
| | | return shortTitle; |
| | | } |
| | | |
| | | public void setShortTitle(String shortTitle) { |
| | | this.shortTitle = shortTitle; |
| | | } |
| | | |
| | | public List<QuestionSubject> getQuestionSubjects() { |
| | | return questionSubjects; |
| | | } |
| | | |
| | | public void setQuestionSubjects(List<QuestionSubject> questionSubjects) { |
| | | this.questionSubjects = questionSubjects; |
| | | } |
| | | } |