|
@@ -1,7 +1,6 @@
|
|
|
package com.ym.mec.biz.dal.dto;
|
|
|
|
|
|
import com.ym.mec.biz.dal.entity.CourseSchedule;
|
|
|
-import com.ym.mec.biz.dal.enums.ClassGroupTypeEnum;
|
|
|
import com.ym.mec.biz.dal.enums.StudentAttendanceStatusEnum;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
@@ -50,10 +49,6 @@ public class CourseScheduleDto extends CourseSchedule {
|
|
|
this.attendanceStatus = attendanceStatus;
|
|
|
}
|
|
|
|
|
|
- /** 班级类型(普通班级、合奏班级) */
|
|
|
- @ApiModelProperty(value = "班级类型(普通班级、合奏班级、提高课班级、VIP班级)",required = false)
|
|
|
- private ClassGroupTypeEnum type;
|
|
|
-
|
|
|
public String getTeacherName() {
|
|
|
return teacherName;
|
|
|
}
|
|
@@ -69,12 +64,4 @@ public class CourseScheduleDto extends CourseSchedule {
|
|
|
public void setClassGroupName(String classGroupName) {
|
|
|
this.classGroupName = classGroupName;
|
|
|
}
|
|
|
-
|
|
|
- public ClassGroupTypeEnum getType() {
|
|
|
- return type;
|
|
|
- }
|
|
|
-
|
|
|
- public void setType(ClassGroupTypeEnum type) {
|
|
|
- this.type = type;
|
|
|
- }
|
|
|
}
|