StudentCourseVO.java
302 Bytes
package com.meishu.vo.student;
import com.meishu.vo.voddict.GetCourseTreesVodsVO;
import lombok.Data;
import java.util.List;
@Data
public class StudentCourseVO {
private String treeName;
private List<GetCourseTreesVodsVO> vodDictDOS;
private List<StudentCourseVO> studentCourseVO;
}