package com.qxgmat.dto.admin.response; import com.nuliji.tools.annotation.Dto; import com.qxgmat.data.relation.entity.QuestionNoRelation; import com.qxgmat.dto.admin.extend.ExercisePaperExtendDto; import com.qxgmat.dto.admin.extend.QuestionExtendDto; @Dto(entity = QuestionNoRelation.class) public class ExerciseQuestionListDto { private Integer id; private ExercisePaperExtendDto paper; private Integer questionId; private QuestionExtendDto question; private String title; private Integer no; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public ExercisePaperExtendDto getPaper() { return paper; } public void setPaper(ExercisePaperExtendDto paper) { this.paper = paper; } public QuestionExtendDto getQuestion() { return question; } public void setQuestion(QuestionExtendDto question) { this.question = question; } public Integer getQuestionId() { return questionId; } public void setQuestionId(Integer questionId) { this.questionId = questionId; } public Integer getNo() { return no; } public void setNo(Integer no) { this.no = no; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } }