QuestionDetailExtendDto.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package com.qxgmat.dto.extend;
  2. import com.alibaba.fastjson.JSONObject;
  3. import com.nuliji.tools.annotation.Dto;
  4. import com.qxgmat.data.dao.entity.Question;
  5. @Dto(entity = Question.class)
  6. public class QuestionDetailExtendDto {
  7. private Integer id;
  8. private String stem;
  9. private String type;
  10. private String difficult;
  11. private String place;
  12. private String officialContent;
  13. private String qxContent;
  14. private JSONObject content;
  15. private Integer[] associationContent;
  16. public Integer getId() {
  17. return id;
  18. }
  19. public void setId(Integer id) {
  20. this.id = id;
  21. }
  22. public String getStem() {
  23. return stem;
  24. }
  25. public void setStem(String stem) {
  26. this.stem = stem;
  27. }
  28. public String getType() {
  29. return type;
  30. }
  31. public void setType(String type) {
  32. this.type = type;
  33. }
  34. public String getDifficult() {
  35. return difficult;
  36. }
  37. public void setDifficult(String difficult) {
  38. this.difficult = difficult;
  39. }
  40. public String getPlace() {
  41. return place;
  42. }
  43. public void setPlace(String place) {
  44. this.place = place;
  45. }
  46. }