admin
2020-09-12 2778cf2a16823f9b1153a0549b47f7b503176a17
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
44
45
46
47
48
49
50
51
52
53
54
package com.yeshi.buwan.service.inter.juhe;
 
import com.yeshi.buwan.domain.VideoDetailInfo;
import com.yeshi.buwan.domain.VideoInfo;
import com.yeshi.buwan.domain.entity.PlayUrl;
import com.yeshi.buwan.iqiyi.entity.IqiyiAlbum2;
 
import java.util.List;
 
public interface Iqiyi2Service {
 
    /**
     * 获取视频详情
     *
     * @param videoId
     * @return
     */
    public List<VideoDetailInfo> getVideoDetailList(String videoId);
 
    /**
     * 获取最新一集的详情
     *
     * @param videoId
     * @return
     */
    public VideoDetailInfo getLatestVideoDetail(String videoId);
 
 
    /**
     * 保存专辑
     *
     * @param album
     */
    public void saveIqiyiAlbum(IqiyiAlbum2 album);
 
 
    /**
     * 将专辑添加到视频
     *
     * @param album
     */
    public void addToVideoInfo(IqiyiAlbum2 album);
 
 
    public PlayUrl getPlayUrl(String detailSystemId, int resourceId, String id, String videoId);
 
 
    public int getShowType(String videoid);
 
    public VideoInfo convertAlbumToVideoInfo(IqiyiAlbum2 album);
 
 
    public IqiyiAlbum2 selectAlbumById(Long id);
}