|  | @@ -22,6 +22,18 @@ public class LiveCourseInfoVo extends CourseGroupVo implements Serializable {
 | 
	
		
			
				|  |  |      @ApiModelProperty(value = "学员列表")
 | 
	
		
			
				|  |  |      private List<CourseBuyStudentVo> studentList;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +    @ApiModelProperty(value = "true 自己的课,false 其他老师的课程")
 | 
	
		
			
				|  |  | +    private Boolean myself;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public Boolean getMyself() {
 | 
	
		
			
				|  |  | +        return myself;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public void setMyself(Boolean myself) {
 | 
	
		
			
				|  |  | +        this.myself = myself;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |      @ApiModel(value = "PlanVo", description = "教学计划")
 | 
	
		
			
				|  |  |      public static class PlanVo extends CourseTimeEntity implements Serializable {
 | 
	
		
			
				|  |  |  
 |