From c9ea77f762ea811489555a26e937e5683944734e Mon Sep 17 00:00:00 2001 From: hy001 Date: Tue, 12 May 2026 17:09:56 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9C=8D=E5=8A=A1=E5=99=A8=E5=BC=BA=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...LatestAndReviewVersionManageGetQryExe.java | 26 ++++++++--------- .../query/LatestVersionManageGetQryExe.java | 28 +++++++++---------- 2 files changed, 27 insertions(+), 27 deletions(-) diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/sys/query/LatestAndReviewVersionManageGetQryExe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/sys/query/LatestAndReviewVersionManageGetQryExe.java index 0014eb6a..a9f1c408 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/sys/query/LatestAndReviewVersionManageGetQryExe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/sys/query/LatestAndReviewVersionManageGetQryExe.java @@ -19,11 +19,11 @@ import org.springframework.stereotype.Component; */ @Component @RequiredArgsConstructor -public class LatestAndReviewVersionManageGetQryExe { - - private final VersionManageService versionManageService; - private final SysAppVersionManageAppConvertor sysAppVersionManageAppConvertor; - private final VersionUpdateDescriptionService versionUpdateDescriptionService; +public class LatestAndReviewVersionManageGetQryExe { + + private final VersionManageService versionManageService; + private final SysAppVersionManageAppConvertor sysAppVersionManageAppConvertor; + private final VersionUpdateDescriptionService versionUpdateDescriptionService; public VersionManageLatestAndReviewCO execute(AppExtCommand cmd) { @@ -37,14 +37,14 @@ public class LatestAndReviewVersionManageGetQryExe { .setReview(builderCO(cmd.getReqLanguage(), sysAppVersionManageAppConvertor.toVersionManageCO(review))); } - - private VersionManage getVersion(AppExtCommand cmd, Boolean bool) { - return versionManageService - .getVersion(cmd.requireReqSysOrigin() - , cmd.getReqClient().getClientName() - , cmd.getReqAppIntel().getChannel() - , bool); - } + + private VersionManage getVersion(AppExtCommand cmd, Boolean bool) { + return versionManageService + .getVersion(cmd.requireReqSysOrigin() + , cmd.getReqClient().getClientName() + , null + , bool); + } private VersionManageCO builderCO(String language, VersionManageCO versionCO) { diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/sys/query/LatestVersionManageGetQryExe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/sys/query/LatestVersionManageGetQryExe.java index a1c67cfb..bc6f164e 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/sys/query/LatestVersionManageGetQryExe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/sys/query/LatestVersionManageGetQryExe.java @@ -18,11 +18,11 @@ import org.springframework.stereotype.Component; */ @Component @RequiredArgsConstructor -public class LatestVersionManageGetQryExe { - - private final VersionManageService versionManageService; - private final SysAppVersionManageAppConvertor sysAppVersionManageAppConvertor; - private final VersionUpdateDescriptionService versionUpdateDescriptionService; +public class LatestVersionManageGetQryExe { + + private final VersionManageService versionManageService; + private final SysAppVersionManageAppConvertor sysAppVersionManageAppConvertor; + private final VersionUpdateDescriptionService versionUpdateDescriptionService; public VersionManageCO execute(AppExtCommand cmd) { @@ -45,12 +45,12 @@ public class LatestVersionManageGetQryExe { .getUpdateDescription(versionCO.getId(), cmd.getReqLanguage())) .orElse(versionCO.getUpdateDescribe()); } - - private VersionManage getVersion(AppExtCommand cmd) { - return versionManageService - .getVersion(cmd.requireReqSysOrigin() - , cmd.getReqClient().getClientName() - , cmd.getReqAppIntel().getChannel() - , Boolean.FALSE); - } -} + + private VersionManage getVersion(AppExtCommand cmd) { + return versionManageService + .getVersion(cmd.requireReqSysOrigin() + , cmd.getReqClient().getClientName() + , null + , Boolean.FALSE); + } +}