UserQuestionBaseDto.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. package com.qxgmat.dto.response;
  2. import com.nuliji.tools.annotation.Dto;
  3. import com.qxgmat.data.dao.entity.UserQuestion;
  4. import com.qxgmat.dto.extend.QuestionBaseExtendDto;
  5. import com.qxgmat.dto.extend.QuestionNoExtendDto;
  6. import java.util.List;
  7. @Dto(entity = UserQuestion.class)
  8. public class UserQuestionBaseDto {
  9. private Integer id;
  10. private Integer no;
  11. private String questionModule;
  12. private String questionType;
  13. private Integer questionId;
  14. private Integer questionNoId;
  15. private QuestionBaseExtendDto question;
  16. private QuestionNoExtendDto questionNo;
  17. private List<QuestionNoExtendDto> questionNos;
  18. private Boolean collect;
  19. public Integer getId() {
  20. return id;
  21. }
  22. public void setId(Integer id) {
  23. this.id = id;
  24. }
  25. public Integer getQuestionId() {
  26. return questionId;
  27. }
  28. public void setQuestionId(Integer questionId) {
  29. this.questionId = questionId;
  30. }
  31. public Integer getQuestionNoId() {
  32. return questionNoId;
  33. }
  34. public void setQuestionNoId(Integer questionNoId) {
  35. this.questionNoId = questionNoId;
  36. }
  37. public QuestionBaseExtendDto getQuestion() {
  38. return question;
  39. }
  40. public void setQuestion(QuestionBaseExtendDto question) {
  41. this.question = question;
  42. }
  43. public List<QuestionNoExtendDto> getQuestionNos() {
  44. return questionNos;
  45. }
  46. public void setQuestionNos(List<QuestionNoExtendDto> questionNos) {
  47. this.questionNos = questionNos;
  48. }
  49. public Boolean getCollect() {
  50. return collect;
  51. }
  52. public void setCollect(Boolean collect) {
  53. this.collect = collect;
  54. }
  55. public QuestionNoExtendDto getQuestionNo() {
  56. return questionNo;
  57. }
  58. public void setQuestionNo(QuestionNoExtendDto questionNo) {
  59. this.questionNo = questionNo;
  60. }
  61. public Integer getNo() {
  62. return no;
  63. }
  64. public void setNo(Integer no) {
  65. this.no = no;
  66. }
  67. public String getQuestionModule() {
  68. return questionModule;
  69. }
  70. public void setQuestionModule(String questionModule) {
  71. this.questionModule = questionModule;
  72. }
  73. public String getQuestionType() {
  74. return questionType;
  75. }
  76. public void setQuestionType(String questionType) {
  77. this.questionType = questionType;
  78. }
  79. }