|  | @@ -36,6 +36,9 @@ public class CourseScheduleHomeworkVo {
 | 
	
		
			
				|  |  |      private Integer classNum;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +    @ApiModelProperty("课程状态 NOT_START未开始 ING进行中 COMPLETE已完成 CANCEL已取消")
 | 
	
		
			
				|  |  | +    private CourseScheduleEnum courseStatus;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |      @ApiModelProperty("上课日期")
 | 
	
		
			
				|  |  |      @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
 | 
	
		
			
				|  |  |      @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone="GMT+8")
 | 
	
	
		
			
				|  | @@ -75,6 +78,13 @@ public class CourseScheduleHomeworkVo {
 | 
	
		
			
				|  |  |      @ApiModelProperty("学生课后作业列表")
 | 
	
		
			
				|  |  |      private IPage<StudentHomeworkVo> studentHomeworkList;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +    public CourseScheduleEnum getCourseStatus() {
 | 
	
		
			
				|  |  | +        return courseStatus;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public void setCourseStatus(CourseScheduleEnum courseStatus) {
 | 
	
		
			
				|  |  | +        this.courseStatus = courseStatus;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      public Long getCourseId() {
 | 
	
		
			
				|  |  |          return courseId;
 |