From ece29d5f465550e2b67ae35864bd9bdc52311080 Mon Sep 17 00:00:00 2001 From: zhaoqing <3160641494@qq.com> Date: Thu, 18 Jun 2026 10:25:53 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BC=81=E4=B8=9A=E5=B8=81?= =?UTF-8?q?=E5=80=BC-=E5=90=84=E7=BB=84=E7=BB=87=E7=8B=AC=E7=AB=8B?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/mhd/system/api/WlhyServiceFeign.java | 5 +++-- .../api/factory/RemoteWlhyFallbackFactory.java | 2 +- .../ExchangeRateApplicationService.java | 14 +++++++------- .../dto/exchangeRate/ExchangeRateDTO.java | 6 ++++++ 4 files changed, 17 insertions(+), 10 deletions(-) diff --git a/mhd-api/mhd-api-system/src/main/java/com/mhd/system/api/WlhyServiceFeign.java b/mhd-api/mhd-api-system/src/main/java/com/mhd/system/api/WlhyServiceFeign.java index 7b29982a5..2a035bb27 100644 --- a/mhd-api/mhd-api-system/src/main/java/com/mhd/system/api/WlhyServiceFeign.java +++ b/mhd-api/mhd-api-system/src/main/java/com/mhd/system/api/WlhyServiceFeign.java @@ -546,11 +546,12 @@ public interface WlhyServiceFeign { @RequestParam(name="organizationId", required = false) String organizationId); - @ApiOperation("汇率-更新推送状态") + @ApiOperation("汇率-更新推送状态(按组织独立推送)") @PostMapping("/ntocc/tmsSettlementExchangeRate/updatePushStatus") void updateExchangeRatePushStatus(@RequestParam("id") String id, @RequestParam("pushStatus") Integer pushStatus, @RequestParam(name="pushTime",required = false) String pushTime, @RequestParam(name="pushBy",required = false) Long pushBy, - @RequestParam(name="pushByName",required = false) String pushByName); + @RequestParam(name="pushByName",required = false) String pushByName, + @RequestParam("organizationId") Long organizationId); } \ No newline at end of file diff --git a/mhd-api/mhd-api-system/src/main/java/com/mhd/system/api/factory/RemoteWlhyFallbackFactory.java b/mhd-api/mhd-api-system/src/main/java/com/mhd/system/api/factory/RemoteWlhyFallbackFactory.java index b5f9d74d3..3a989887e 100644 --- a/mhd-api/mhd-api-system/src/main/java/com/mhd/system/api/factory/RemoteWlhyFallbackFactory.java +++ b/mhd-api/mhd-api-system/src/main/java/com/mhd/system/api/factory/RemoteWlhyFallbackFactory.java @@ -557,7 +557,7 @@ public class RemoteWlhyFallbackFactory implements FallbackFactory