yujian
2019-08-27 d8359ddb48dab5cc797a9d552e11fde571f4920c
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.taobao.dataoke;
 
import java.util.List;
 
import com.yeshi.fanli.entity.taobao.dataoke.DaTaoKeDetail;
 
/**
 * 大淘客商品服务
 * 
 * @author Administrator
 *
 */
public interface DaTaoKeGoodsService {
 
    public List<DaTaoKeDetail> getCurrentSalesRankGoodsList(Integer cid);
 
    /**
     * 全天销量榜
     * 
     * @param cid
     * @return
     */
    public List<DaTaoKeDetail> getCurrentDaySalesRankGoodsList(Integer cid);
 
    /**
     * 获取热推榜
     * 
     * @param cid
     * @return
     */
    public List<DaTaoKeDetail> getCurrentHotSalesRankGoodsList();
 
    
    
    public List<DaTaoKeDetail> getGoodsNotInList(Long cid, List<Long> listId, int count);
 
    
    /**
     * 根据店铺id筛选
     * @param start
     * @param count
     * @param sellerId
     * @return
     */
    public List<DaTaoKeDetail> listBySellerId(long start, int count, Long sellerId);
 
}