| | |
| | | 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();
|
| | |
|
| | | }
|
| | | package com.yeshi.fanli.service.inter.brand; |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.yeshi.goods.facade.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(); |
| | | |
| | | } |