QuestionExtendDto.java 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package com.qxgmat.dto.extend;
  2. import com.nuliji.tools.annotation.Dto;
  3. import com.qxgmat.data.dao.entity.Question;
  4. @Dto(entity = Question.class)
  5. public class QuestionExtendDto {
  6. private Integer id;
  7. private String description;
  8. private String questionType;
  9. private String difficult;
  10. private String place;
  11. private Integer collectionNumber;
  12. public Integer getId() {
  13. return id;
  14. }
  15. public void setId(Integer id) {
  16. this.id = id;
  17. }
  18. public String getDifficult() {
  19. return difficult;
  20. }
  21. public void setDifficult(String difficult) {
  22. this.difficult = difficult;
  23. }
  24. public String getPlace() {
  25. return place;
  26. }
  27. public void setPlace(String place) {
  28. this.place = place;
  29. }
  30. public String getDescription() {
  31. return description;
  32. }
  33. public void setDescription(String description) {
  34. this.description = description;
  35. }
  36. public Integer getCollectionNumber() {
  37. return collectionNumber;
  38. }
  39. public void setCollectionNumber(Integer collectionNumber) {
  40. this.collectionNumber = collectionNumber;
  41. }
  42. public String getQuestionType() {
  43. return questionType;
  44. }
  45. public void setQuestionType(String questionType) {
  46. this.questionType = questionType;
  47. }
  48. }