yujian
2019-09-20 7ad7905f32ef6b2d67bbd45260a0413be904fa8d
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
package com.yeshi.fanli.service.inter.brand;
 
import java.util.List;
 
import com.yeshi.fanli.dto.jd.JDShopInfo;
import com.yeshi.fanli.entity.brand.BrandInfo;
import com.yeshi.fanli.entity.brand.BrandShopCahe;
 
/**
 * 品牌店铺
 * 
 * @author Administrator
 *
 */
public interface BrandShopCaheService {
 
 
    /**O
     * 获取品牌店铺
     * @param brandId
     * @return
     */
    public List<BrandShopCahe> getByBrandId(Long brandId);
 
    /**
     * 添加淘宝店铺信息
     * @param brandId
     * @param auctionId
     * @param sellerId
     */
    public boolean addBrandShopTB(Long brandId, Long auctionId, Long sellerId);
 
    /**
     * 添加京东店铺信息
     * @param brandId
     * @param shopInfo
     */
    public void addBrandShopJD(BrandInfo brandInfo, JDShopInfo shopInfo);
 
    /**
     * 添加拼多多店铺
     * @param brandInfo
     */
    public void addBrandShopPDD(BrandInfo brandInfo);
 
}