admin
2021-04-03 32d6c2ea8039b4771fd6b1ded8b022733e32352f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.yeshi.buwan.service.imp.juhe;
 
import java.util.List;
 
import com.yeshi.buwan.domain.VideoDetailInfo;
import com.yeshi.buwan.domain.entity.PlayUrl;
 
public interface IVideoDetail {
    public List<VideoDetailInfo> getVideoDetailList(String videoId,int page,int pageSize);
 
    public VideoDetailInfo getLatestVideoDetail(String videoId);
 
    public int getShowType(String videId);
 
    public PlayUrl getPlayUrl(String detailSystemId, String id, String type, int resourceid, String videoId);
}