UserCourseTimeDto.java 417 B

1234567891011121314151617181920212223242526
  1. package com.qxgmat.dto.response;
  2. import java.util.Date;
  3. public class UserCourseTimeDto {
  4. private Date day;
  5. private String type; // preview, course, stop
  6. public Date getDay() {
  7. return day;
  8. }
  9. public void setDay(Date day) {
  10. this.day = day;
  11. }
  12. public String getType() {
  13. return type;
  14. }
  15. public void setType(String type) {
  16. this.type = type;
  17. }
  18. }