package com.yeshi.buwan.service.inter.baidu;
|
|
import com.yeshi.buwan.vo.baidu.BaiDuCPUTypeVO;
|
|
import java.util.List;
|
|
/**
|
* 百度内容联盟服务
|
*/
|
public interface BaiDuCPUService {
|
|
/**
|
* @return
|
*/
|
public List<BaiDuCPUTypeVO> getNewsTypeListCache();
|
|
public List<BaiDuCPUTypeVO> getVideoTypeListCache();
|
|
public List<BaiDuCPUTypeVO> getNewsSafeTypeListCache();
|
|
public List<BaiDuCPUTypeVO> getVideoSafeTypeListCache();
|
|
}
|