UserQuestionDetailDto.java 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. package com.qxgmat.dto.response;
  2. import com.alibaba.fastjson.JSONObject;
  3. import com.nuliji.tools.annotation.Dto;
  4. import com.qxgmat.data.dao.entity.UserQuestion;
  5. import com.qxgmat.dto.extend.*;
  6. import java.util.List;
  7. @Dto(entity = UserQuestion.class)
  8. public class UserQuestionDetailDto {
  9. private Integer id;
  10. private Integer no;
  11. private Integer stageNo;
  12. private UserPaperBaseExtendDto paper;
  13. private UserReportExtendDto report;
  14. private String questionModule;
  15. private String questionType;
  16. private Integer questionId;
  17. private Integer questionNoId;
  18. private List<QuestionNoExtendDto> questionNos;
  19. private JSONObject userAnswer;
  20. private JSONObject setting;
  21. private JSONObject detail;
  22. private Integer userTime;
  23. private QuestionDetailExtendDto question;
  24. private QuestionNoExtendDto questionNo;
  25. private Boolean collect;
  26. private UserNoteQuestionExtendDto note;
  27. private List<UserAskQuestionExtendDto> asks;
  28. private List<QuestionBaseExtendDto> associations;
  29. private Integer questionStatus;
  30. public Integer getId() {
  31. return id;
  32. }
  33. public void setId(Integer id) {
  34. this.id = id;
  35. }
  36. public Integer getQuestionId() {
  37. return questionId;
  38. }
  39. public void setQuestionId(Integer questionId) {
  40. this.questionId = questionId;
  41. }
  42. public Integer getQuestionNoId() {
  43. return questionNoId;
  44. }
  45. public void setQuestionNoId(Integer questionNoId) {
  46. this.questionNoId = questionNoId;
  47. }
  48. public List<QuestionNoExtendDto> getQuestionNos() {
  49. return questionNos;
  50. }
  51. public void setQuestionNos(List<QuestionNoExtendDto> questionNos) {
  52. this.questionNos = questionNos;
  53. }
  54. public QuestionDetailExtendDto getQuestion() {
  55. return question;
  56. }
  57. public void setQuestion(QuestionDetailExtendDto question) {
  58. this.question = question;
  59. }
  60. public Boolean getCollect() {
  61. return collect;
  62. }
  63. public void setCollect(Boolean collect) {
  64. this.collect = collect;
  65. }
  66. public UserNoteQuestionExtendDto getNote() {
  67. return note;
  68. }
  69. public void setNote(UserNoteQuestionExtendDto note) {
  70. this.note = note;
  71. }
  72. public JSONObject getDetail() {
  73. return detail;
  74. }
  75. public void setDetail(JSONObject detail) {
  76. this.detail = detail;
  77. }
  78. public String getQuestionModule() {
  79. return questionModule;
  80. }
  81. public void setQuestionModule(String questionModule) {
  82. this.questionModule = questionModule;
  83. }
  84. public UserPaperBaseExtendDto getPaper() {
  85. return paper;
  86. }
  87. public void setPaper(UserPaperBaseExtendDto paper) {
  88. this.paper = paper;
  89. }
  90. public UserReportExtendDto getReport() {
  91. return report;
  92. }
  93. public void setReport(UserReportExtendDto report) {
  94. this.report = report;
  95. }
  96. public QuestionNoExtendDto getQuestionNo() {
  97. return questionNo;
  98. }
  99. public void setQuestionNo(QuestionNoExtendDto questionNo) {
  100. this.questionNo = questionNo;
  101. }
  102. public List<UserAskQuestionExtendDto> getAsks() {
  103. return asks;
  104. }
  105. public void setAsks(List<UserAskQuestionExtendDto> asks) {
  106. this.asks = asks;
  107. }
  108. public List<QuestionBaseExtendDto> getAssociations() {
  109. return associations;
  110. }
  111. public void setAssociations(List<QuestionBaseExtendDto> associations) {
  112. this.associations = associations;
  113. }
  114. public JSONObject getUserAnswer() {
  115. return userAnswer;
  116. }
  117. public void setUserAnswer(JSONObject userAnswer) {
  118. this.userAnswer = userAnswer;
  119. }
  120. public Integer getNo() {
  121. return no;
  122. }
  123. public void setNo(Integer no) {
  124. this.no = no;
  125. }
  126. public String getQuestionType() {
  127. return questionType;
  128. }
  129. public void setQuestionType(String questionType) {
  130. this.questionType = questionType;
  131. }
  132. public Integer getStageNo() {
  133. return stageNo;
  134. }
  135. public void setStageNo(Integer stageNo) {
  136. this.stageNo = stageNo;
  137. }
  138. public Integer getQuestionStatus() {
  139. return questionStatus;
  140. }
  141. public void setQuestionStatus(Integer questionStatus) {
  142. this.questionStatus = questionStatus;
  143. }
  144. public JSONObject getSetting() {
  145. return setting;
  146. }
  147. public void setSetting(JSONObject setting) {
  148. this.setting = setting;
  149. }
  150. public Integer getUserTime() {
  151. return userTime;
  152. }
  153. public void setUserTime(Integer userTime) {
  154. this.userTime = userTime;
  155. }
  156. }