ExerciseQuestionListDto.java 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. package com.qxgmat.dto.admin.response;
  2. import com.nuliji.tools.annotation.Dto;
  3. import com.qxgmat.data.relation.entity.QuestionNoRelation;
  4. import com.qxgmat.dto.admin.extend.ExercisePaperExtendDto;
  5. import com.qxgmat.dto.admin.extend.QuestionExtendDto;
  6. @Dto(entity = QuestionNoRelation.class)
  7. public class ExerciseQuestionListDto {
  8. private Integer id;
  9. private ExercisePaperExtendDto paper;
  10. private Integer questionId;
  11. private QuestionExtendDto question;
  12. private String title;
  13. private Integer no;
  14. public Integer getId() {
  15. return id;
  16. }
  17. public void setId(Integer id) {
  18. this.id = id;
  19. }
  20. public ExercisePaperExtendDto getPaper() {
  21. return paper;
  22. }
  23. public void setPaper(ExercisePaperExtendDto paper) {
  24. this.paper = paper;
  25. }
  26. public QuestionExtendDto getQuestion() {
  27. return question;
  28. }
  29. public void setQuestion(QuestionExtendDto question) {
  30. this.question = question;
  31. }
  32. public Integer getQuestionId() {
  33. return questionId;
  34. }
  35. public void setQuestionId(Integer questionId) {
  36. this.questionId = questionId;
  37. }
  38. public Integer getNo() {
  39. return no;
  40. }
  41. public void setNo(Integer no) {
  42. this.no = no;
  43. }
  44. public String getTitle() {
  45. return title;
  46. }
  47. public void setTitle(String title) {
  48. this.title = title;
  49. }
  50. }