package com.gkhy.exam.institutionalaccess.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.gkhy.exam.institutionalaccess.entity.ThBatchCourseChapter; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.List; @Repository @Mapper public interface ThBatchCourseChapterMapper extends BaseMapper { void deleteByBatchUuid(@Param("batchUuid") String batchUuid); List getByBatchUuids(@Param("batchUuids")List batchUuids); Integer insertBatch(@Param("batchCourseChapterList") List batchCourseChapterList); Integer updateBatch(@Param("batchCourseChapterList") List batchCourseChapterList); List getByChapterUuids(@Param("chapterUuids") List chapterUuids); }