GetStudyProgressVO.java
461 Bytes
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;
}