yujian
2019-05-08 27fc9b56091ac988b14b9cf92808f9b3d5c70fb5
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package com.yeshi.fanli.service.inter.taobao.dataoke;
 
import java.util.List;
 
import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBrief;
import com.yeshi.fanli.entity.taobao.dataoke.DaTaoKeDetail;
 
/**
 * 大淘客商品详情服务
 * 
 * @author Administrator
 *
 */
public interface DaTaoKeGoodsDetailService {
    /**
     * 启动商品同步服务
     */
    public void startSyncGoods();
 
    /**
     * 根据商品ID查询
     * 
     * @param goodsIdList
     * @return
     */
    public List<DaTaoKeDetail> listByGoodsIds(List<Long> goodsIdList);
 
    /**
     * 过滤淘宝商品信息
     * 
     * @param goodsList
     * @return
     */
    public List<TaoBaoGoodsBrief> filterTaoBaoGoods(List<TaoBaoGoodsBrief> goodsList);
 
    /**
     * 过滤淘宝商品信息
     * 
     * @param goods
     * @return
     */
    public TaoBaoGoodsBrief filterTaoBaoGoods(TaoBaoGoodsBrief goods);
 
    /**
     * 根据主键查询
     * 
     * @param idList
     * @return
     */
    public List<DaTaoKeDetail> listByIds(List<Long> idList);
 
    /**
     * 查询一类全部
     * @param cid
     * @param listId
     * @param count
     * @return
     */
    public List<DaTaoKeDetail> getGoodsNotInList(Long cid, List<Long> listId, int count);
 
}