UserExercisePaperDto.java 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. package com.qxgmat.dto.response;
  2. import com.nuliji.tools.annotation.Dto;
  3. import com.qxgmat.data.dao.entity.ExercisePaper;
  4. import com.qxgmat.data.dao.entity.SentencePaper;
  5. import com.qxgmat.data.inline.PaperStat;
  6. import com.qxgmat.dto.extend.UserPaperBaseExtendDto;
  7. import com.qxgmat.dto.extend.UserReportExtendDto;
  8. @Dto(entity = ExercisePaper.class)
  9. public class UserExercisePaperDto {
  10. private Integer id;
  11. private String title;
  12. private PaperStat stat;
  13. private UserPaperBaseExtendDto paper;
  14. private UserReportExtendDto report;
  15. private Integer userPaperId;
  16. public PaperStat getStat() {
  17. return stat;
  18. }
  19. public void setStat(PaperStat stat) {
  20. this.stat = stat;
  21. }
  22. public UserPaperBaseExtendDto getPaper() {
  23. return paper;
  24. }
  25. public void setPaper(UserPaperBaseExtendDto paper) {
  26. this.paper = paper;
  27. }
  28. public UserReportExtendDto getReport() {
  29. return report;
  30. }
  31. public void setReport(UserReportExtendDto report) {
  32. this.report = report;
  33. }
  34. public Integer getUserPaperId() {
  35. return userPaperId;
  36. }
  37. public void setUserPaperId(Integer userPaperId) {
  38. this.userPaperId = userPaperId;
  39. }
  40. public Integer getId() {
  41. return id;
  42. }
  43. public void setId(Integer id) {
  44. this.id = id;
  45. }
  46. public String getTitle() {
  47. return title;
  48. }
  49. public void setTitle(String title) {
  50. this.title = title;
  51. }
  52. }