|
@@ -2,6 +2,7 @@ package com.ym.mec.biz.dal.dto;
|
|
|
|
|
|
import com.ym.mec.biz.dal.entity.CourseSchedule;
|
|
|
import com.ym.mec.biz.dal.enums.CourseStatusEnum;
|
|
|
+import com.ym.mec.biz.dal.enums.TeachModeEnum;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
import java.util.Date;
|
|
@@ -57,6 +58,15 @@ public class TeacherClassCourseSchudeleDto {
|
|
|
@ApiModelProperty(value = "上课学生名称")
|
|
|
private String studentNames;
|
|
|
|
|
|
+ private TeachModeEnum teachMode;
|
|
|
+
|
|
|
+ public TeachModeEnum getTeachMode() {
|
|
|
+ return teachMode;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTeachMode(TeachModeEnum teachMode) {
|
|
|
+ this.teachMode = teachMode;
|
|
|
+ }
|
|
|
|
|
|
public String getStudentNames() {
|
|
|
return studentNames;
|