StudentDetailVO.java 571 Bytes
package com.meishu.vo.course;

import com.meishu.model.CourseChapterDO;
import lombok.Data;

import java.util.List;

@Data
public class StudentDetailVO {

    private String wechatImg;

    private String status;

    private String username;

    private String campus;

    private String courseName;

    private Integer totalCounts;

    private Integer studyCounts;

    private String studyPercent;

    private String recentTreeTime;

    private String recentTreeName;

    private Integer totalPlayLength;

    private List<CourseChapterDO> courseChapterDOS;

}