| | |
| | | package com.ycl.jxkg.domain.question; |
| | | |
| | | |
| | | import lombok.Data; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Data |
| | | public class QuestionObject { |
| | | |
| | | private String titleContent; |
| | |
| | | |
| | | private String correct; |
| | | |
| | | public String getTitleContent() { |
| | | return titleContent; |
| | | } |
| | | |
| | | public void setTitleContent(String titleContent) { |
| | | this.titleContent = titleContent; |
| | | } |
| | | |
| | | public String getAnalyze() { |
| | | return analyze; |
| | | } |
| | | |
| | | public void setAnalyze(String analyze) { |
| | | this.analyze = analyze; |
| | | } |
| | | |
| | | public List<QuestionItemObject> getQuestionItemObjects() { |
| | | return questionItemObjects; |
| | | } |
| | | |
| | | public void setQuestionItemObjects(List<QuestionItemObject> questionItemObjects) { |
| | | this.questionItemObjects = questionItemObjects; |
| | | } |
| | | |
| | | public String getCorrect() { |
| | | return correct; |
| | | } |
| | | |
| | | public void setCorrect(String correct) { |
| | | this.correct = correct; |
| | | } |
| | | } |