UserTextbookFeedbackDto.java 739 B

12345678910111213141516171819202122232425262728293031323334353637
  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 Integer topicId;
  7. private String target;
  8. private String content;
  9. public Integer getTopicId() {
  10. return topicId;
  11. }
  12. public void setTopicId(Integer topicId) {
  13. this.topicId = topicId;
  14. }
  15. public String getTarget() {
  16. return target;
  17. }
  18. public void setTarget(String target) {
  19. this.target = target;
  20. }
  21. public String getContent() {
  22. return content;
  23. }
  24. public void setContent(String content) {
  25. this.content = content;
  26. }
  27. }