From 5627daeb1ac1a29947e902f9a7efb6730ed98611 Mon Sep 17 00:00:00 2001
From: jiangqs <jiangqs>
Date: 星期五, 07 七月 2023 20:35:50 +0800
Subject: [PATCH] 管理台bug和用户端生日卡

---
 ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/service/RemoteShopService.java |  103 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 102 insertions(+), 1 deletions(-)

diff --git a/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/service/RemoteShopService.java b/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/service/RemoteShopService.java
index cfbfea5..0939dad 100644
--- a/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/service/RemoteShopService.java
+++ b/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/service/RemoteShopService.java
@@ -2,14 +2,20 @@
 
 import com.ruoyi.common.core.constant.ServiceNameConstants;
 import com.ruoyi.common.core.domain.R;
+import com.ruoyi.system.api.domain.dto.MgtBaseBathDto;
+import com.ruoyi.system.api.domain.dto.MgtBasePlatformDto;
+import com.ruoyi.system.api.domain.dto.MgtShopIdByCodeDto;
+import com.ruoyi.system.api.domain.dto.ShopTotalChangeDto;
 import com.ruoyi.system.api.domain.poji.shop.Shop;
-import com.ruoyi.system.api.domain.vo.ShopRelUserVo;
+import com.ruoyi.system.api.domain.vo.*;
 import com.ruoyi.system.api.factory.RemoteShopFallbackFactory;
 import com.ruoyi.system.api.model.QwH5LoginVo;
 import com.ruoyi.system.api.model.QwUserDetailDto;
 import org.springframework.cloud.openfeign.FeignClient;
 import org.springframework.web.bind.annotation.PostMapping;
 import org.springframework.web.bind.annotation.RequestBody;
+
+import java.util.List;
 
 @FeignClient(contextId = "remoteShopService", value = ServiceNameConstants.SHOP_SERVICE, fallbackFactory = RemoteShopFallbackFactory.class)
 public interface RemoteShopService {
@@ -37,4 +43,99 @@
      */
     @PostMapping("/shop/deleteShopTag")
     public R deleteShopTag(@RequestBody String tag);
+
+
+    /**
+     * @description 删除商户标签
+     * @author  jqs
+     * @date    2023/6/9 10:18
+     * @param suggestTag
+     * @return  R
+     */
+    @PostMapping("/shop/deleteShopSuggestTag")
+    public R deleteShopSuggestTag(@RequestBody String suggestTag);
+
+    /**
+     * @description  通过code获取shopId
+     * @author  jqs
+     * @date    2023/6/9 17:00
+     * @param mgtShopIdByCodeDto
+     * @return  R<MgtShopIdByCodeVo>
+     */
+    @PostMapping("/shop/getShopIdByCode")
+    public R<MgtShopIdByCodeVo> getShopIdByCode(@RequestBody MgtShopIdByCodeDto mgtShopIdByCodeDto);
+
+
+    @PostMapping("/shop/listShopSimpleVoByIds")
+    public R<List<MgtSimpleShopVo>> listShopSimpleVoByIds(@RequestBody MgtBaseBathDto mgtBaseBathDto);
+
+    /**
+     * @description boardShopTotal
+     * @param
+     * @return R<MgtBulletinBoardVo>
+     * @author jqs34
+     * @date 2023/6/18 16:45
+     */
+    @PostMapping("/shop/boardShopTotal")
+    public R<MgtBulletinBoardVo> boardShopTotal();
+
+    /**
+     * @description 获取平台统计shopId
+     * @param mgtBasePlatformDto
+     * @return R<List<Long>>
+     * @author jqs34
+     * @date 2023/6/23 14:12
+     */
+    @PostMapping("/shop/listShopIdByPlTotal")
+    public R<List<Long>> listShopIdByPlTotal(@RequestBody MgtBasePlatformDto mgtBasePlatformDto);
+
+
+    /**
+     * @description  更新商户统计
+     * @author  jqs
+     * @date    2023/6/28 17:52
+     * @param shopTotalChangeDto
+     * @return  R
+     */
+    @PostMapping("/shop/changeShopTotal")
+    public R changeShopTotal(@RequestBody ShopTotalChangeDto shopTotalChangeDto);
+
+    /**
+     * @description  获取最近任务
+     * @author  jqs
+     * @date    2023/6/29 18:25
+     * @param userId
+     * @return  R<MemberTaskSimpleVo>
+     */
+    @PostMapping("/shop/getLastMemberTask")
+    public R<MemberTaskSimpleVo> getLastMemberTask(@RequestBody Long userId);
+
+    /**
+     * @description  获取商户下属代理商
+     * @author  jqs
+     * @date    2023/7/3 17:26
+     * @return  R<List<Long>>
+     */
+    @PostMapping("/shop/listShopIdByShopId")
+    public R<List<Long>> listShopIdByShopId(@RequestBody Long shopId);
+
+    /**
+     * @description  获取未回复数量
+     * @author  jqs
+     * @date    2023/7/5 12:49
+     * @param
+     * @return  R<Integer>
+     */
+    @PostMapping("/shop/getUnReplaySuggestVo")
+    public R<Integer> getUnReplaySuggestVo();
+
+    /**
+     * @description  获取商户营销状态
+     * @author  jqs
+     * @date    2023/7/7 14:05
+     * @param shopId
+     * @return  R<Integer>
+     */
+    @PostMapping("/shop/getShopMarketingStatus")
+    public R<Integer> getShopMarketingStatus(@RequestBody Long shopId);
 }

--
Gitblit v1.7.1