From 28cf328a098334b51a3e9d2d56f983fb8c862211 Mon Sep 17 00:00:00 2001 From: yujian <yujian@163.com> Date: 星期六, 23 五月 2020 09:54:38 +0800 Subject: [PATCH] 足迹、收藏订单兼容新需求 --- fanli/src/main/java/com/yeshi/fanli/service/inter/brand/BrandClassShopService.java | 40 +++++++++++++++++++++++++++++++++++++++- 1 files changed, 39 insertions(+), 1 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/service/inter/brand/BrandClassShopService.java b/fanli/src/main/java/com/yeshi/fanli/service/inter/brand/BrandClassShopService.java index 95346a0..11ec69d 100644 --- a/fanli/src/main/java/com/yeshi/fanli/service/inter/brand/BrandClassShopService.java +++ b/fanli/src/main/java/com/yeshi/fanli/service/inter/brand/BrandClassShopService.java @@ -5,7 +5,9 @@ import org.springframework.web.multipart.MultipartFile; import com.yeshi.fanli.entity.brand.BrandClassShop; +import com.yeshi.fanli.entity.taobao.TaoBaoShop; import com.yeshi.fanli.exception.brand.BrandClassShopException; +import com.yeshi.fanli.vo.brand.TaoBaoShopVO; import net.sf.json.JSONObject; @@ -55,7 +57,7 @@ * @param state * @throws BrandClassShopException */ - public void changeShopInfo(MultipartFile file, Long id, Long cid, String shopName, Integer state, Integer top) + public void changeShopInfo(MultipartFile file, Long id, Long cid, String shopName, Integer state, Integer top,String key) throws BrandClassShopException; @@ -91,4 +93,40 @@ */ public void deleteBatchByClassId(List<Long> list); + + /** + * 鏇存柊鍝佺墝鍟嗗搧 + */ + public void updateShopGoods(); + + /** + * 搴楅摵鍒楄〃 + * @param page + * @param cid + * @return + */ + public JSONObject listEffectiveCacheV2(int page, Long cid,String platform,String version); + + + /** + * 鍏煎2.0 + * @param start + * @param count + * @param cid + * @return + */ + public List<TaoBaoShopVO> listEffectiveShop(long start, int count, Long cid,String platform,String version); + + + + public long countBrandShopinfo(Long cid); + + + /** + * 鍒嗙被涓嬪簵閾� + * @param cid + * @return + */ + public List<TaoBaoShop> listEffectiveClassShop(Long cid); + } -- Gitblit v1.8.0