From 8728429603cdb25b5fc6245915dc829e78d81571 Mon Sep 17 00:00:00 2001 From: YYC <1833023622@qq.com> Date: 星期二, 31 十月 2023 21:33:53 +0800 Subject: [PATCH] 船运问题 --- igds-inout/src/main/java/com/ld/igds/inout/service/HInoutReportService.java | 7 ++++--- 1 files changed, 4 insertions(+), 3 deletions(-) diff --git a/igds-inout/src/main/java/com/ld/igds/inout/service/HInoutReportService.java b/igds-inout/src/main/java/com/ld/igds/inout/service/HInoutReportService.java index 3083052..85d500c 100644 --- a/igds-inout/src/main/java/com/ld/igds/inout/service/HInoutReportService.java +++ b/igds-inout/src/main/java/com/ld/igds/inout/service/HInoutReportService.java @@ -6,6 +6,7 @@ import com.ld.igds.util.DateUtil; import org.apache.commons.lang3.StringUtils; import org.springframework.stereotype.Component; + import java.util.*; @Component @@ -48,10 +49,10 @@ args.put("type", str); } - str = (String) param.get("customerId"); + str = (String) param.get("noticeId"); if (StringUtils.isNotEmpty(str)) { - hql += " and customerId=:customerId "; - args.put("customerId", str); + hql += " and noticeId=:noticeId "; + args.put("noticeId", str); } str = (String) param.get("progress"); -- Gitblit v1.9.3