教育训练处考试制证系统后端
heheng
2025-05-19 3a762add44449332d6d379e361698850f6066e16
exam-system/src/main/java/com/gkhy/exam/institutionalaccess/mapper/ThBatchCourseMapper.java
@@ -14,7 +14,14 @@
public interface ThBatchCourseMapper extends BaseMapper<ThBatchCourse> {
    void deleteByBatchUuidAndCourseUuid(@Param("list") List<ThBatchCourse> deleteBatchCourseList);
    List<ThBatchCourseVO> getListByBatchUuids(@Param("batchUuids")List<String> batchUuids);
    List<ThBatchCourseVO> getListByBatchUuid(@Param("batchUuid")String batchUuid);
    void deleteByBatchUuid(@Param("batchUuid")String batchUuid);
    List<ThBatchCourse> getByBatchUuids(@Param("batchUuids") List<String> batchUuids);
    Integer insertBatch(@Param("courseList") List<ThBatchCourse> courseList);
    Integer updateBatch(@Param("courseList") List<ThBatchCourse> courseList);
}