package com.qxgmat.dto.response; import java.util.Date; public class UserCourseTimeDto { private Date day; private String type; // preview, course, stop public Date getDay() { return day; } public void setDay(Date day) { this.day = day; } public String getType() { return type; } public void setType(String type) { this.type = type; } }