admin
2024-10-30 010ef2a907e66efd4702443c06cdd18f8a7ffa5b
src/main/java/com/yeshi/buwan/service/inter/juhe/TencentVideoService.java
@@ -1,7 +1,9 @@
package com.yeshi.buwan.service.inter.juhe;
import com.yeshi.buwan.tencent.entity.TencentCoverInfo;
import com.yeshi.buwan.youku.entity.YouKuShowDetail;
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;
@@ -12,12 +14,38 @@
     *
     * @param detail
     */
    public void save(TencentCoverInfo detail);
    public void save(TencentCoverInfo detail) throws Exception;
    public TencentCoverInfo getConverDetail(String id);
    public TencentCoverInfo getCoverDetail(String coverId);
    public long count(String type);
    public TencentCoverInfo getSimpleCoverDetail(String coverId);
    public List<TencentCoverInfo> list(String type, int page, int pageSize);
    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, boolean saveCoverInfo) throws Exception;
    /**
     * @author hxh
     * @description 清空已下线的专辑
     * @date 16:52 2024/8/16
     * @return void
     **/
    public void clearOfflineCovers();
}