package com.qxgmat.dto.extend; public class UserStudyExtendDto { private String title; private Integer time; public UserStudyExtendDto(String title, Integer time) { this.title = title; this.time = time; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public Integer getTime() { return time; } public void setTime(Integer time) { this.time = time; } }