From b5db8e0184366cb62c3ba7f517c6be6fb474546f Mon Sep 17 00:00:00 2001 From: xuhy <3313886187@qq.com> Date: 星期三, 13 八月 2025 19:20:50 +0800 Subject: [PATCH] 订单导入 --- ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/factory/GoodsEvaluateClientFallbackFactory.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/factory/GoodsEvaluateClientFallbackFactory.java b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/factory/GoodsEvaluateClientFallbackFactory.java index 5109018..3793106 100644 --- a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/factory/GoodsEvaluateClientFallbackFactory.java +++ b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/factory/GoodsEvaluateClientFallbackFactory.java @@ -18,8 +18,8 @@ public GoodsEvaluateClient create(Throwable cause) { return new GoodsEvaluateClient(){ @Override - public R<Long> getEvaluateIdByUserIdAndGoodId(Integer goodId, Long userId) { - return R.fail("根据用户id和门店id获取评论id失败:" + cause.getMessage()); + public R<Long> getEvaluateIdByOrderId( Long orderId) { + return R.fail("根据订单id获取评论id失败:" + cause.getMessage()); } }; } -- Gitblit v1.7.1