Blame view

GetStudyProgressVO.java 461 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
package com.meishu.vo.student;

import lombok.Data;

import java.util.List;

@Data
public class GetStudyProgressVO {

    private List<StudentCourseVO> treeVods;

    private Integer totalCounts;

    private Integer watchCounts;

    private Integer percent;

    private Integer toStudyTreeNodes;

    /**
     * 是否做过习题
     */
    private String exerciseStatus;

    /**
     * 是否能做习题
     */
    private String doExerciseStatus;


}