admin
2024-09-05 8631bb49abe5dfed233bc579a228c578232f8079
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;
 
}