|
|
@@ -26,10 +26,10 @@ import java.util.List;
|
|
|
public interface VideoPostMapper extends BaseMapper<VideoPost> {
|
|
|
void updateVideoScope(VideoScopeUpdate videoScopeUpdate);
|
|
|
void updateVideoInfo(VideoInfoUpdate videoInfoUpdate);
|
|
|
- void updateVideoCover(String videoId, String coverUrl);
|
|
|
+ void updateVideoCover(@Param("videoId") String videoId, @Param("coverUrl") String coverUrl);
|
|
|
void updateVideoFile(@Param("videoId") String videoId, @Param("videoInfo") VideoInfo videoInfo);
|
|
|
- void updateVideoStatus(String videoId, int status);
|
|
|
- void updateVideoPublish(String videoId, int status);
|
|
|
+ void updateVideoStatus(@Param("videoId") String videoId, @Param("status") int status);
|
|
|
+ void updateVideoPublish(@Param("videoId") String videoId, @Param("status") int status);
|
|
|
void updateVideoCached(@Param("videoId") String videoId,
|
|
|
@Param("videoInfo") VideoInfo videoInfo,
|
|
|
@Param("channelId") int channelId);
|