From 4b1f67afb07b6f92d31944f2087ef5a69404f284 Mon Sep 17 00:00:00 2001
From: chenye <chenye0811@qq.com>
Date: 星期五, 07 七月 2023 14:54:47 +0800
Subject: [PATCH] 首页&合作商查询 by cheny

---
 ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/factory/RemoteShopFallbackFactory.java |   34 +++++++++++++++++++++++++++++-----
 1 files changed, 29 insertions(+), 5 deletions(-)

diff --git a/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/factory/RemoteShopFallbackFactory.java b/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/factory/RemoteShopFallbackFactory.java
index 72a50b6..7a4fdb7 100644
--- a/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/factory/RemoteShopFallbackFactory.java
+++ b/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/factory/RemoteShopFallbackFactory.java
@@ -1,15 +1,15 @@
 package com.ruoyi.system.api.factory;
 
 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.vo.MgtBulletinBoardVo;
-import com.ruoyi.system.api.domain.vo.MgtShopIdByCodeVo;
-import com.ruoyi.system.api.domain.vo.MgtSimpleShopVo;
+import com.ruoyi.system.api.domain.dto.ShopTotalChangeDto;
+import com.ruoyi.system.api.domain.vo.*;
 import com.ruoyi.system.api.model.QwH5LoginVo;
 import com.ruoyi.system.api.model.QwUserDetailDto;
 import com.ruoyi.system.api.service.RemoteShopService;
 import com.ruoyi.system.api.domain.poji.shop.Shop;
-import com.ruoyi.system.api.domain.vo.ShopRelUserVo;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 import org.springframework.cloud.openfeign.FallbackFactory;
@@ -64,7 +64,7 @@
             }
 
             @Override
-            public R<List<MgtSimpleShopVo>> listShopSimpleVoByIds(String shopIds) {
+            public R<List<MgtSimpleShopVo>> listShopSimpleVoByIds(MgtBaseBathDto mgtBaseBathDto) {
                 return R.fail("获取商户列表失败:" + throwable.getMessage());
             }
 
@@ -73,6 +73,30 @@
                 return null;
             }
 
+            @Override
+            public R<List<Long>> listShopIdByPlTotal(MgtBasePlatformDto mgtBasePlatformDto) {
+                return R.fail("获取商户列表失败:" + throwable.getMessage());
+            }
+
+            @Override
+            public R changeShopTotal(ShopTotalChangeDto shopTotalChangeDto) {
+                return R.fail("更新商户统计失败:" + throwable.getMessage());
+            }
+
+            @Override
+            public R<MemberTaskSimpleVo> getLastMemberTask(Long userId) {
+                return R.fail("获取最近会员任务失败:" + throwable.getMessage());
+            }
+
+            @Override
+            public R<List<Long>> listShopIdByShopId(Long shopId) {
+                return R.fail("获取商户列表失败:" + throwable.getMessage());
+            }
+
+            @Override
+            public R<Integer> getUnReplaySuggestVo() {
+                return null;
+            }
         };
     }
 }

--
Gitblit v1.7.1