123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- package com.qxgmat.dto.response;
- import com.qxgmat.data.dao.entity.TextbookLibrary;
- public class UserTextbookInfoDto {
- private TextbookLibrary latest;
- private TextbookLibrary second;
- private Boolean hasService;
- private Integer unUseRecord;
- public Boolean getHasService() {
- return hasService;
- }
- public void setHasService(Boolean hasService) {
- this.hasService = hasService;
- }
- public Integer getUnUseRecord() {
- return unUseRecord;
- }
- public void setUnUseRecord(Integer unUseRecord) {
- this.unUseRecord = unUseRecord;
- }
- public TextbookLibrary getLatest() {
- return latest;
- }
- public void setLatest(TextbookLibrary latest) {
- this.latest = latest;
- }
- public TextbookLibrary getSecond() {
- return second;
- }
- public void setSecond(TextbookLibrary second) {
- this.second = second;
- }
- }
|