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);
|
|
public VideoDetailInfo getLatestVideoDetail(String videoId);
|
|
public int getShowType(String videId);
|
|
public PlayUrl getPlayUrl(String detailSystemId, String id, String type, int resourceid, String videoId);
|
}
|