package com.yeshi.fanli.service.inter.special;
|
|
import java.util.List;
|
|
import com.yeshi.fanli.entity.bus.clazz.GoodsClass;
|
import com.yeshi.fanli.entity.bus.recommend.RecommendBanner;
|
import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBrief;
|
|
/**
|
* 双11专题活动
|
*
|
* @author Administrator
|
*
|
*/
|
public interface S11Service {
|
|
/**
|
* 获取预售商品
|
*
|
* @param page
|
* @return
|
*/
|
public List<TaoBaoGoodsBrief> getPreSaleGoodsCache(int page);
|
|
/**
|
* 获取分类
|
*
|
* @return
|
*/
|
public List<GoodsClass> getGoodsClassCache();
|
|
/**
|
* 获取Banner
|
*
|
* @return
|
*/
|
public List<RecommendBanner> getBanner();
|
|
/**
|
* 按分类获取
|
*
|
* @param page
|
* @return
|
*/
|
public List<TaoBaoGoodsBrief> getPreSaleGoodsByType(String type, int page);
|
|
}
|