| | |
| | | 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); |
| | | } |