yujian
2019-07-29 a1175313094799efcdbbecf2840a90350d3159a7
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
package com.yeshi.fanli.service.inter.jd;
 
import java.util.List;
 
import com.yeshi.fanli.dto.jd.JDSearchResult;
import com.yeshi.fanli.entity.bus.clazz.GoodsClass;
import com.yeshi.fanli.entity.jd.JDGoods;
import com.yeshi.fanli.exception.jd.JDGoodsException;
 
public interface JDGoodsService {
 
    /**
     * 专题分类
     * @return
     */
    public List<GoodsClass> getSpecialClass();
 
    
    /**
     * 专题商品搜索
     * @param page
     * @param cid
     * @return
     * @throws JDGoodsException
     */
    public List<JDGoods> specialSearch(Integer page, Long cid) throws JDGoodsException;
 
 
    /**
     * 首页底部商品搜索
     * @param page
     * @return
     */
    public JDSearchResult getIndexJDGoods(int page);
 
    
}