package com.gkhy.exam.institutionalaccess.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.gkhy.exam.institutionalaccess.entity.ThCourseChapter; import com.gkhy.exam.institutionalaccess.model.vo.ThCourseChapterVO; 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 ThCourseChapterMapper extends BaseMapper { List listByCourseUuids(@Param("courseUuids") List courseUuids); List listByCourseUuid(@Param("courseUuid")String courseUuid); List getByUuids(@Param("chapterUuids") List chapterUuids); Integer insertBatch(@Param("courseChapterList")List courseChapterList); Integer updateBatch(@Param("courseChapterList")List courseChapterList); List getChapterNameByUuids(@Param("chapterUuids")List chapterUuids); }