From ec09e9f2c72ff37654076c327008ac89ed32a8c3 Mon Sep 17 00:00:00 2001 From: jiangqs <343695869@qq.com> Date: 星期六, 24 六月 2023 17:44:11 +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