package cc.mrbird.febs.video.mapper; import cc.mrbird.febs.video.entity.VideoMasterItemsEntity; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Param; import java.util.List; public interface VideoMasterItemsMapper extends BaseMapper { int updateVideoUrlBySourceId(@Param("url") String url, @Param("sourceId") Long sourceId); List selectItemsByMasterId(@Param("masterId") Long masterId); int deleteNotInIds(@Param("list") List list, @Param("masterId") Long masterId); // int batchInsert(@Param("list") List list); VideoMasterItemsEntity selectItemByVideoIdAndItemId(@Param("videoId") Long videoId, @Param("itemId") Long itemId); }