|  | @@ -1,12 +1,12 @@
 | 
	
		
			
				|  |  |  package com.ym.mec.biz.dal.dto;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -import io.swagger.annotations.ApiModelProperty;
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | -import java.util.Date;
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  | +import com.ym.mec.biz.dal.entity.CourseSchedule;
 | 
	
		
			
				|  |  |  import com.ym.mec.biz.dal.enums.ClassGroupTypeEnum;
 | 
	
		
			
				|  |  |  import com.ym.mec.biz.dal.enums.CourseStatusEnum;
 | 
	
		
			
				|  |  |  import com.ym.mec.biz.dal.enums.StudentAttendanceStatusEnum;
 | 
	
		
			
				|  |  | +import io.swagger.annotations.ApiModelProperty;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +import java.util.Date;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  /**
 | 
	
		
			
				|  |  |   * @Author Joburgess
 | 
	
	
		
			
				|  | @@ -23,6 +23,8 @@ public class StudentManageCourseListDto {
 | 
	
		
			
				|  |  |      @ApiModelProperty(value = "班级类型(普通班级、合奏班级、提高课班级、VIP班级)",required = true)
 | 
	
		
			
				|  |  |      private ClassGroupTypeEnum classGroupType;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +    private CourseSchedule.CourseScheduleType courseScheduleType;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |      @ApiModelProperty(value = "上课日期",required = false)
 | 
	
		
			
				|  |  |      private Date courseDate;
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -41,6 +43,14 @@ public class StudentManageCourseListDto {
 | 
	
		
			
				|  |  |      @ApiModelProperty(value = "总课时",required = false)
 | 
	
		
			
				|  |  |      private Integer totalClassTimes;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +    public CourseSchedule.CourseScheduleType getCourseScheduleType() {
 | 
	
		
			
				|  |  | +        return courseScheduleType;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    public void setCourseScheduleType(CourseSchedule.CourseScheduleType courseScheduleType) {
 | 
	
		
			
				|  |  | +        this.courseScheduleType = courseScheduleType;
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |      public Integer getTotalClassTimes() {
 | 
	
		
			
				|  |  |          return totalClassTimes;
 | 
	
		
			
				|  |  |      }
 |