From 454f73537f9bcc27c50400f9197b771c83fd5900 Mon Sep 17 00:00:00 2001 From: jiangqs <343695869@qq.com> Date: 星期五, 23 六月 2023 16:38:32 +0800 Subject: [PATCH] 营销统计 --- ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/factory/RemoteMemberFallbackFactory.java | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/factory/RemoteMemberFallbackFactory.java b/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/factory/RemoteMemberFallbackFactory.java index de8320d..743325a 100644 --- a/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/factory/RemoteMemberFallbackFactory.java +++ b/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/factory/RemoteMemberFallbackFactory.java @@ -101,6 +101,16 @@ public R<List<Long>> listUserIdByAge(MgtActivityAgeDto mgtActivityAgeDto) { return R.fail("筛选userId年龄段失败:" + throwable.getMessage()); } + + @Override + public R<List<Long>> listUserIdByShopId(List<Long> shopIdlist) { + return R.fail("通过shopId获取userId失败:" + throwable.getMessage()); + } + + @Override + public R<MgtShopTotalMemberVo> getUserTotalByShopId(List<Long> shopIdlist) { + return R.fail("通过shopId获取user统计失败:" + throwable.getMessage()); + } }; } } -- Gitblit v1.7.1