UserSentenceInfoDto.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. package com.qxgmat.dto.response;
  2. import com.alibaba.fastjson.JSONArray;
  3. import com.qxgmat.dto.extend.CommentExtendDto;
  4. import java.util.Collection;
  5. import java.util.Map;
  6. public class UserSentenceInfoDto {
  7. private JSONArray chapters;
  8. private Number trailPages;
  9. private String code;
  10. private Integer dataId;
  11. private Collection<CommentExtendDto> comments;
  12. public String getCode() {
  13. return code;
  14. }
  15. public void setCode(String code) {
  16. this.code = code;
  17. }
  18. public JSONArray getChapters() {
  19. return chapters;
  20. }
  21. public void setChapters(JSONArray chapters) {
  22. this.chapters = chapters;
  23. }
  24. public Number getTrailPages() {
  25. return trailPages;
  26. }
  27. public void setTrailPages(Number trailPages) {
  28. this.trailPages = trailPages;
  29. }
  30. public Integer getDataId() {
  31. return dataId;
  32. }
  33. public void setDataId(Integer dataId) {
  34. this.dataId = dataId;
  35. }
  36. public Collection<CommentExtendDto> getComments() {
  37. return comments;
  38. }
  39. public void setComments(Collection<CommentExtendDto> comments) {
  40. this.comments = comments;
  41. }
  42. }