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
| package com.yeshi.fanli.service.inter.brand;
|
| import java.util.List;
|
| import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBrief;
|
| /**
| * 品牌店铺商品服务
| *
| * @author Administrator
| *
| */
| public interface BrandClassShopGoodsService {
|
| /**
| * 总的品牌店铺商品列表
| *
| * @param page
| * @param count
| * @return
| */
| public List<TaoBaoGoodsBrief> listBrandShopGoods(Long sellerId, int page, int count);
|
| /**
| * 总的品牌店铺商品数量
| *
| * @return
| */
| public long countBrandShopGoods(Long sellerId);
|
| /**
| * 更新品牌商品的数据
| */
| public void startUpdateGoods();
|
| }
|
|