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);
| }
|
|