QuestionExtendDto.java 1.5 KB

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