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