From 9a03e46771f68bae27b172c561b6b6f49b5f0505 Mon Sep 17 00:00:00 2001 From: Pu Zhibing <393733352@qq.com> Date: 星期三, 11 六月 2025 20:22:59 +0800 Subject: [PATCH] 对接部分抖音接口 --- ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/factory/RemoteGoodsFallbackFactory.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/RemoteGoodsFallbackFactory.java b/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/factory/RemoteGoodsFallbackFactory.java index 6bfcfa7..a5e8c61 100644 --- a/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/factory/RemoteGoodsFallbackFactory.java +++ b/ruoyi-api/ruoyi-api-system/src/main/java/com/ruoyi/system/api/factory/RemoteGoodsFallbackFactory.java @@ -75,6 +75,16 @@ public R changeGoodsTotal(List<GoodsTotalChangeDto> goodsTotalChangeDtoList) { return R.fail("改变商品统计失败:" + throwable.getMessage()); } + + @Override + public R<List<String>> listGoodsNameByGoodsClass(Long classId) { + return R.fail("获取分类商品列表失败:" + throwable.getMessage()); + } + + @Override + public R<?> push(Long appointmentId) { + return R.fail("推送小程序订阅消息失败:" + throwable.getMessage()); + } }; } } -- Gitblit v1.7.1