|
@@ -2,6 +2,8 @@ package com.ym.mec.biz.dal.dao;
|
|
|
|
|
|
import com.ym.mec.biz.dal.entity.CourseScheduleModifyLog;
|
|
|
import com.ym.mec.common.dal.BaseDAO;
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
+import org.springframework.security.core.parameters.P;
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
@@ -12,5 +14,5 @@ public interface CourseScheduleModifyLogDao extends BaseDAO<Integer, CourseSched
|
|
|
* 批量新增
|
|
|
* @param scheduleModifyLogs
|
|
|
*/
|
|
|
- void batchInsert(List<CourseScheduleModifyLog> scheduleModifyLogs);
|
|
|
+ void batchInsert(@Param("scheduleModifyLogs") List<CourseScheduleModifyLog> scheduleModifyLogs);
|
|
|
}
|