From 3053622a190f1ed98a1fdd5ce998f9bda5cc7e87 Mon Sep 17 00:00:00 2001 From: Pu Zhibing <393733352@qq.com> Date: 星期二, 22 七月 2025 18:20:38 +0800 Subject: [PATCH] Merge branch 'dev' of http://120.76.84.145:10101/gitblit/r/java/mx_charging_pile --- ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/factory/OtherFallbackFactory.java | 27 +++++++++++++++++++++++++++ 1 files changed, 27 insertions(+), 0 deletions(-) diff --git a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/factory/OtherFallbackFactory.java b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/factory/OtherFallbackFactory.java index d08ab1f..65ceb4d 100644 --- a/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/factory/OtherFallbackFactory.java +++ b/ruoyi-api/ruoyi-api-other/src/main/java/com/ruoyi/other/api/factory/OtherFallbackFactory.java @@ -12,6 +12,8 @@ import org.springframework.cloud.openfeign.FallbackFactory; import org.springframework.stereotype.Component; +import java.math.BigDecimal; +import java.util.HashMap; import java.util.List; import java.util.Map; @@ -104,6 +106,31 @@ public R<Region> getRegionBuyCode(String code) { return R.fail("远程调用根据code查询名称失败:"+throwable.getMessage()); } + + @Override + public R<List<TSystemConfiguration>> getTSystemConfiguration() { + return R.fail("远程调用获取配置失败:"+throwable.getMessage()); + } + + @Override + public R<BigDecimal> getCarDisCharge() { + return R.fail("远程调用获取配置失败:"+throwable.getMessage()); + } + + @Override + public R<BigDecimal> getGreenElectricity() { + return R.fail("远程调用获取配置失败:"+throwable.getMessage()); + } + + @Override + public R carportData(String parkingPlace) { + return R.fail("远程调用获取配置失败:"+throwable.getMessage()); + } + + @Override + public R<HashMap<String, Object>> getCarportData() { + return R.fail("远程调用获取配置失败:"+throwable.getMessage()); + } }; } } -- Gitblit v1.7.1