UserPaperBaseExtendDto.java 770 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. package com.qxgmat.dto.extend;
  2. import com.nuliji.tools.annotation.Dto;
  3. import com.qxgmat.data.dao.entity.UserPaper;
  4. import com.qxgmat.data.inline.PaperStat;
  5. @Dto(entity = UserPaper.class)
  6. public class UserPaperBaseExtendDto {
  7. private Integer id;
  8. private Integer times;
  9. private Integer questionNumber;
  10. public Integer getId() {
  11. return id;
  12. }
  13. public void setId(Integer id) {
  14. this.id = id;
  15. }
  16. public Integer getTimes() {
  17. return times;
  18. }
  19. public void setTimes(Integer times) {
  20. this.times = times;
  21. }
  22. public Integer getQuestionNumber() {
  23. return questionNumber;
  24. }
  25. public void setQuestionNumber(Integer questionNumber) {
  26. this.questionNumber = questionNumber;
  27. }
  28. }