UserQuestionBaseDto.java 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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.QuestionExtendDto;
  6. import com.qxgmat.dto.extend.QuestionNoExtendDto;
  7. import java.util.Date;
  8. @Dto(entity = UserQuestion.class)
  9. public class UserQuestionBaseDto {
  10. private Integer id;
  11. private Integer no;
  12. private String questionModule;
  13. private String questionType;
  14. private Integer questionId;
  15. private Integer questionNoId;
  16. private QuestionExtendDto question;
  17. private QuestionNoExtendDto questionNo;
  18. private Integer isCorrect;
  19. private JSONObject setting;
  20. private JSONObject detail;
  21. private Date updateTime;
  22. private Boolean collect;
  23. private Boolean note;
  24. public Integer getId() {
  25. return id;
  26. }
  27. public void setId(Integer id) {
  28. this.id = id;
  29. }
  30. public Integer getQuestionId() {
  31. return questionId;
  32. }
  33. public void setQuestionId(Integer questionId) {
  34. this.questionId = questionId;
  35. }
  36. public Integer getQuestionNoId() {
  37. return questionNoId;
  38. }
  39. public void setQuestionNoId(Integer questionNoId) {
  40. this.questionNoId = questionNoId;
  41. }
  42. public QuestionExtendDto getQuestion() {
  43. return question;
  44. }
  45. public void setQuestion(QuestionExtendDto question) {
  46. this.question = question;
  47. }
  48. public Boolean getCollect() {
  49. return collect;
  50. }
  51. public void setCollect(Boolean collect) {
  52. this.collect = collect;
  53. }
  54. public QuestionNoExtendDto getQuestionNo() {
  55. return questionNo;
  56. }
  57. public void setQuestionNo(QuestionNoExtendDto questionNo) {
  58. this.questionNo = questionNo;
  59. }
  60. public Integer getNo() {
  61. return no;
  62. }
  63. public void setNo(Integer no) {
  64. this.no = no;
  65. }
  66. public String getQuestionModule() {
  67. return questionModule;
  68. }
  69. public void setQuestionModule(String questionModule) {
  70. this.questionModule = questionModule;
  71. }
  72. public String getQuestionType() {
  73. return questionType;
  74. }
  75. public void setQuestionType(String questionType) {
  76. this.questionType = questionType;
  77. }
  78. public Integer getIsCorrect() {
  79. return isCorrect;
  80. }
  81. public void setIsCorrect(Integer isCorrect) {
  82. this.isCorrect = isCorrect;
  83. }
  84. public JSONObject getSetting() {
  85. return setting;
  86. }
  87. public void setSetting(JSONObject setting) {
  88. this.setting = setting;
  89. }
  90. public JSONObject getDetail() {
  91. return detail;
  92. }
  93. public void setDetail(JSONObject detail) {
  94. this.detail = detail;
  95. }
  96. public Date getUpdateTime() {
  97. return updateTime;
  98. }
  99. public void setUpdateTime(Date updateTime) {
  100. this.updateTime = updateTime;
  101. }
  102. public Boolean getNote() {
  103. return note;
  104. }
  105. public void setNote(Boolean note) {
  106. this.note = note;
  107. }
  108. }