UserTextbookInfoDto.java 925 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package com.qxgmat.dto.response;
  2. import com.qxgmat.data.dao.entity.TextbookLibrary;
  3. public class UserTextbookInfoDto {
  4. private TextbookLibrary latest;
  5. private TextbookLibrary second;
  6. private Boolean hasService;
  7. private Integer unUseRecord;
  8. public Boolean getHasService() {
  9. return hasService;
  10. }
  11. public void setHasService(Boolean hasService) {
  12. this.hasService = hasService;
  13. }
  14. public Integer getUnUseRecord() {
  15. return unUseRecord;
  16. }
  17. public void setUnUseRecord(Integer unUseRecord) {
  18. this.unUseRecord = unUseRecord;
  19. }
  20. public TextbookLibrary getLatest() {
  21. return latest;
  22. }
  23. public void setLatest(TextbookLibrary latest) {
  24. this.latest = latest;
  25. }
  26. public TextbookLibrary getSecond() {
  27. return second;
  28. }
  29. public void setSecond(TextbookLibrary second) {
  30. this.second = second;
  31. }
  32. }