admin
2021-08-27 8fee151ffae0c3818694b7318583814bf92663e2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.yeshi.buwan.service.inter.juhe;
 
import com.yeshi.buwan.domain.VideoDetailInfo;
import com.yeshi.buwan.videos.tencent.entity.TencentCoverInfo;
import com.yeshi.buwan.videos.tencent.entity.TencentCoverVideo;
import com.yeshi.buwan.videos.tencent.entity.TencentSearchVideoMap;
 
import java.util.List;
 
public interface TencentVideoService {
 
    /**
     * 保存
     *
     * @param detail
     */
    
    public void save(TencentCoverInfo detail) throws Exception;
 
    public TencentCoverInfo getCoverDetail(String coverId);
 
    public TencentCoverInfo getSimpleCoverDetail(String coverId);
 
    public List<TencentCoverVideo> getVideoList(String coverId, int page, int pageSize);
 
    public TencentCoverVideo getVideoDetail(String id);
 
    public long count(String category);
 
    public List<TencentCoverInfo> list(String category, int page, int pageSize);
 
    public List<VideoDetailInfo> getVideoDetailList(final String videoid, int page, int pageSize);
 
    public TencentSearchVideoMap selectMapByVideoId(String videoId);
 
    /**
     * 添加到全网搜
     *
     * @param showDetail
     */
    public void addToInternetSearch(TencentCoverInfo showDetail) throws Exception;
 
}