| | |
| | | package com.yeshi.fanli.service.inter.taobao;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import org.springframework.web.multipart.MultipartFile;
|
| | |
|
| | | import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBrief;
|
| | | import com.yeshi.fanli.entity.taobao.TaoBaoShop;
|
| | | import com.yeshi.fanli.entity.taobao.TaoBaoShopInfo;
|
| | | import com.yeshi.fanli.vo.brand.TaoBaoShopVO;
|
| | |
|
| | | public interface TaoBaoShopService {
|
| | |
|
| | |
| | | */
|
| | | public TaoBaoShopInfo getTaoBaoShopInfo(TaoBaoGoodsBrief goodsInfo);
|
| | |
|
| | | /**
|
| | | * 店铺信息
|
| | | * |
| | | * @param id
|
| | | * @return
|
| | | */
|
| | | public TaoBaoShop selectByPrimaryKey(Long id);
|
| | |
|
| | | /**
|
| | | * 获取店铺信息
|
| | | * |
| | | * @param auctionId
|
| | | * @param sellerId
|
| | | * @return
|
| | | */
|
| | | public TaoBaoShop getTaoBaoShop(Long auctionId, Long sellerId);
|
| | |
|
| | | public int insertSelective(TaoBaoShop record);
|
| | |
|
| | | public int updateByPrimaryKeySelective(TaoBaoShop record);
|
| | |
|
| | | /**
|
| | | * 修改店铺信息
|
| | | * |
| | | * @param file
|
| | | * @param id
|
| | | * @param shopName
|
| | | */
|
| | | public void changeInfo(MultipartFile file, Long id, String shopName,String key);
|
| | |
|
| | | /**
|
| | | * 查询店铺信息、并返回钱3个商品数量
|
| | | * |
| | | * @param start
|
| | | * @param count
|
| | | * @param cid
|
| | | * @return
|
| | | */
|
| | | public List<TaoBaoShopVO> listBrandShopinfo(long start, int count, Long cid);
|
| | |
|
| | | public long countBrandShopinfo(Long cid);
|
| | |
|
| | | /**
|
| | | * 根据店铺搜索关键词查找
|
| | | * @param key
|
| | | * @return
|
| | | */
|
| | | public List<TaoBaoShopVO> getShopByKey(String key);
|
| | | |
| | | |
| | | /**
|
| | | * 根据店铺搜索关键词查找
|
| | | * @param key
|
| | | * @return
|
| | | */
|
| | | public List<TaoBaoShopVO> getShopByKeyV2(String key,String platform,String version);
|
| | | }
|