admin
2022-04-16 04f09e52ffd4681bdfd85e51acd3da0d1280c3d3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.yeshi.buwan.service.inter.video;
 
/**
 * @author hxh
 * @title: VideoV2ConvertService
 * @description: 旧视频信息转到新的视频信息服务
 * @date 2022/3/17 15:32
 */
public interface VideoV2ConvertService {
 
    //同步旧的视频信息
    public void asyncOldVideo(String videoId) throws Exception;
 
}