UserSentenceQuestionDetailDto.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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.QuestionDetailExtendDto;
  6. import com.qxgmat.dto.extend.SentenceQuestionDetailExtendDto;
  7. import com.qxgmat.dto.extend.UserNoteExtendDto;
  8. @Dto(entity = UserQuestion.class)
  9. public class UserSentenceQuestionDetailDto {
  10. private Integer id;
  11. private String module;
  12. private Integer questionId;
  13. private Integer questionNoId;
  14. private JSONObject answer;
  15. private JSONObject detail;
  16. private QuestionDetailExtendDto question;
  17. private SentenceQuestionDetailExtendDto sentence;
  18. private Boolean collect;
  19. private UserNoteExtendDto note;
  20. public Integer getId() {
  21. return id;
  22. }
  23. public void setId(Integer id) {
  24. this.id = id;
  25. }
  26. public String getModule() {
  27. return module;
  28. }
  29. public void setModule(String module) {
  30. this.module = module;
  31. }
  32. public Integer getQuestionId() {
  33. return questionId;
  34. }
  35. public void setQuestionId(Integer questionId) {
  36. this.questionId = questionId;
  37. }
  38. public Integer getQuestionNoId() {
  39. return questionNoId;
  40. }
  41. public void setQuestionNoId(Integer questionNoId) {
  42. this.questionNoId = questionNoId;
  43. }
  44. public JSONObject getAnswer() {
  45. return answer;
  46. }
  47. public void setAnswer(JSONObject answer) {
  48. this.answer = answer;
  49. }
  50. public QuestionDetailExtendDto getQuestion() {
  51. return question;
  52. }
  53. public void setQuestion(QuestionDetailExtendDto question) {
  54. this.question = question;
  55. }
  56. public SentenceQuestionDetailExtendDto getSentence() {
  57. return sentence;
  58. }
  59. public void setSentence(SentenceQuestionDetailExtendDto sentence) {
  60. this.sentence = sentence;
  61. }
  62. public Boolean getCollect() {
  63. return collect;
  64. }
  65. public void setCollect(Boolean collect) {
  66. this.collect = collect;
  67. }
  68. public UserNoteExtendDto getNote() {
  69. return note;
  70. }
  71. public void setNote(UserNoteExtendDto note) {
  72. this.note = note;
  73. }
  74. public JSONObject getDetail() {
  75. return detail;
  76. }
  77. public void setDetail(JSONObject detail) {
  78. this.detail = detail;
  79. }
  80. }