|
@@ -1,10 +1,7 @@
|
|
|
package com.ym.mec.biz.dal.page;
|
|
|
|
|
|
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.GroupType;
|
|
|
-import com.ym.mec.biz.dal.enums.TeachModeEnum;
|
|
|
+import com.ym.mec.biz.dal.enums.*;
|
|
|
import com.ym.mec.common.page.QueryInfo;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
@@ -70,6 +67,9 @@ public class EndCourseScheduleQueryInfo extends QueryInfo {
|
|
|
@ApiModelProperty(value = "上课模式")
|
|
|
private TeachModeEnum teachMode;
|
|
|
|
|
|
+ @ApiModelProperty(value = "职务类型(助教、主教)")
|
|
|
+ private TeachTypeEnum teachType;
|
|
|
+
|
|
|
private boolean isExport = false;
|
|
|
|
|
|
public TeachModeEnum getTeachMode() {
|
|
@@ -223,4 +223,12 @@ public class EndCourseScheduleQueryInfo extends QueryInfo {
|
|
|
public void setCreateEndDate(Date createEndDate) {
|
|
|
this.createEndDate = createEndDate;
|
|
|
}
|
|
|
+
|
|
|
+ public TeachTypeEnum getTeachType() {
|
|
|
+ return teachType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTeachType(TeachTypeEnum teachType) {
|
|
|
+ this.teachType = teachType;
|
|
|
+ }
|
|
|
}
|