UserAskQuestionInfoDto.java 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. package com.qxgmat.dto.response;
  2. import com.nuliji.tools.annotation.Dto;
  3. import com.qxgmat.data.dao.entity.UserAskQuestion;
  4. import com.qxgmat.dto.extend.QuestionExtendDto;
  5. import com.qxgmat.dto.extend.QuestionNoExtendDto;
  6. import java.util.Date;
  7. @Dto(entity = UserAskQuestion.class)
  8. public class UserAskQuestionInfoDto {
  9. private Integer id;
  10. private Integer userId;
  11. private Integer userQuestionId;
  12. private String questionModule;
  13. private Integer questionId;
  14. private Integer questionNoId;
  15. private QuestionExtendDto question;
  16. private QuestionNoExtendDto questionNo;
  17. private String target;
  18. private Integer answerStatus;
  19. private Date answerTime;
  20. private Date createTime;
  21. private Date updateTime;
  22. private String content;
  23. private String answer;
  24. public Integer getId() {
  25. return id;
  26. }
  27. public void setId(Integer id) {
  28. this.id = id;
  29. }
  30. public Integer getUserId() {
  31. return userId;
  32. }
  33. public void setUserId(Integer userId) {
  34. this.userId = userId;
  35. }
  36. public Integer getUserQuestionId() {
  37. return userQuestionId;
  38. }
  39. public void setUserQuestionId(Integer userQuestionId) {
  40. this.userQuestionId = userQuestionId;
  41. }
  42. public String getQuestionModule() {
  43. return questionModule;
  44. }
  45. public void setQuestionModule(String questionModule) {
  46. this.questionModule = questionModule;
  47. }
  48. public Integer getQuestionId() {
  49. return questionId;
  50. }
  51. public void setQuestionId(Integer questionId) {
  52. this.questionId = questionId;
  53. }
  54. public Integer getQuestionNoId() {
  55. return questionNoId;
  56. }
  57. public void setQuestionNoId(Integer questionNoId) {
  58. this.questionNoId = questionNoId;
  59. }
  60. public QuestionExtendDto getQuestion() {
  61. return question;
  62. }
  63. public void setQuestion(QuestionExtendDto question) {
  64. this.question = question;
  65. }
  66. public QuestionNoExtendDto getQuestionNo() {
  67. return questionNo;
  68. }
  69. public void setQuestionNo(QuestionNoExtendDto questionNo) {
  70. this.questionNo = questionNo;
  71. }
  72. public String getTarget() {
  73. return target;
  74. }
  75. public void setTarget(String target) {
  76. this.target = target;
  77. }
  78. public Integer getAnswerStatus() {
  79. return answerStatus;
  80. }
  81. public void setAnswerStatus(Integer answerStatus) {
  82. this.answerStatus = answerStatus;
  83. }
  84. public Date getAnswerTime() {
  85. return answerTime;
  86. }
  87. public void setAnswerTime(Date answerTime) {
  88. this.answerTime = answerTime;
  89. }
  90. public Date getCreateTime() {
  91. return createTime;
  92. }
  93. public void setCreateTime(Date createTime) {
  94. this.createTime = createTime;
  95. }
  96. public Date getUpdateTime() {
  97. return updateTime;
  98. }
  99. public void setUpdateTime(Date updateTime) {
  100. this.updateTime = updateTime;
  101. }
  102. public String getContent() {
  103. return content;
  104. }
  105. public void setContent(String content) {
  106. this.content = content;
  107. }
  108. public String getAnswer() {
  109. return answer;
  110. }
  111. public void setAnswer(String answer) {
  112. this.answer = answer;
  113. }
  114. }