UserTextbookFeedbackDto.java 937 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package com.qxgmat.dto.request;
  2. import com.nuliji.tools.annotation.Dto;
  3. import com.qxgmat.data.dao.entity.UserTextbookFeedback;
  4. @Dto(entity = UserTextbookFeedback.class)
  5. public class UserTextbookFeedbackDto {
  6. private String questionSubject;
  7. private Integer no;
  8. private String target;
  9. private String content;
  10. public String getTarget() {
  11. return target;
  12. }
  13. public void setTarget(String target) {
  14. this.target = target;
  15. }
  16. public String getContent() {
  17. return content;
  18. }
  19. public void setContent(String content) {
  20. this.content = content;
  21. }
  22. public String getQuestionSubject() {
  23. return questionSubject;
  24. }
  25. public void setQuestionSubject(String questionSubject) {
  26. this.questionSubject = questionSubject;
  27. }
  28. public Integer getNo() {
  29. return no;
  30. }
  31. public void setNo(Integer no) {
  32. this.no = no;
  33. }
  34. }