UserFeedbackErrorDataDto.java 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package com.qxgmat.dto.request;
  2. import com.nuliji.tools.annotation.Dto;
  3. import com.qxgmat.data.dao.entity.UserFeedbackError;
  4. @Dto(entity = UserFeedbackError.class)
  5. public class UserFeedbackErrorDataDto {
  6. private Integer dataId;
  7. private String title;
  8. private String position;
  9. private String originContent;
  10. private String content;
  11. public String getPosition() {
  12. return position;
  13. }
  14. public void setPosition(String position) {
  15. this.position = position;
  16. }
  17. public String getOriginContent() {
  18. return originContent;
  19. }
  20. public void setOriginContent(String originContent) {
  21. this.originContent = originContent;
  22. }
  23. public String getContent() {
  24. return content;
  25. }
  26. public void setContent(String content) {
  27. this.content = content;
  28. }
  29. public String getTitle() {
  30. return title;
  31. }
  32. public void setTitle(String title) {
  33. this.title = title;
  34. }
  35. public Integer getDataId() {
  36. return dataId;
  37. }
  38. public void setDataId(Integer dataId) {
  39. this.dataId = dataId;
  40. }
  41. }