admin
2020-05-06 24a8d17e007545f7426c48352109aa1a9c6587ee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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);
 
}