|
@@ -8,6 +8,7 @@ import com.ym.mec.biz.dal.dto.CourseAttendanceDetailHeadInfoDto;
|
|
|
import com.ym.mec.biz.dal.dto.CoursePostponeDto;
|
|
|
import com.ym.mec.biz.dal.dto.CourseScheduleDto;
|
|
|
import com.ym.mec.biz.dal.dto.CourseScheduleEndDto;
|
|
|
+import com.ym.mec.biz.dal.dto.CourseTimeDto;
|
|
|
import com.ym.mec.biz.dal.dto.CreateCourseScheduleDto;
|
|
|
import com.ym.mec.biz.dal.dto.TeacherAttendanceDto;
|
|
|
import com.ym.mec.biz.dal.dto.VipGroupCourseAdjustInfoDto;
|
|
@@ -82,15 +83,15 @@ public interface CourseScheduleService extends BaseService<Long, CourseSchedule>
|
|
|
* @param classGroupId 班级编号
|
|
|
* @param coursesTimes 增加的课次
|
|
|
* @param startDate 排课开始时间
|
|
|
- * @param teachingArrangement 教学安排(周几,几点-几点)
|
|
|
+ * @param teachingArrangementList 教学安排(周几,几点-几点)
|
|
|
* @param teachMode 教学模式
|
|
|
* @param type 课程类型
|
|
|
* @param schoolId 教学点
|
|
|
* @param isJumpHoliday 是否跳过节假日
|
|
|
* @return
|
|
|
*/
|
|
|
- boolean batchAddCourseSchedule(Integer classGroupId, int coursesTimes, Date startDate, String teachingArrangement, TeachModeEnum teachMode,
|
|
|
- CourseScheduleType type, Integer schoolId, boolean isJumpHoliday);
|
|
|
+ boolean batchAddCourseSchedule(Integer classGroupId, int coursesTimes, Date startDate, List<CourseTimeDto> teachingArrangementList,
|
|
|
+ TeachModeEnum teachMode, CourseScheduleType type, Integer schoolId, boolean isJumpHoliday);
|
|
|
|
|
|
/**
|
|
|
* @Author: Joburgess
|