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; } }