From f05f26dd0ee340883a8c16cc83a5d580f3df8e03 Mon Sep 17 00:00:00 2001 From: "2265829957@qq.com" <2265829957@qq.com> Date: Mon, 23 Feb 2026 17:48:46 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BF=90=E7=BB=B4=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/xhpc/order/service/impl/XhpcInspectionServiceImpl.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xhpc-modules/xhpc-order/src/main/java/com/xhpc/order/service/impl/XhpcInspectionServiceImpl.java b/xhpc-modules/xhpc-order/src/main/java/com/xhpc/order/service/impl/XhpcInspectionServiceImpl.java index 32c1827b..2fb2966c 100644 --- a/xhpc-modules/xhpc-order/src/main/java/com/xhpc/order/service/impl/XhpcInspectionServiceImpl.java +++ b/xhpc-modules/xhpc-order/src/main/java/com/xhpc/order/service/impl/XhpcInspectionServiceImpl.java @@ -30,7 +30,8 @@ public class XhpcInspectionServiceImpl implements IXhpcInspectionService { @Override public List> getInspectionList(Long stationId, String time) { - return xhpcInspectionMapper.getInspectionList(stationId, time); + String today = DateUtil.today(); + return xhpcInspectionMapper.getInspectionList(stationId, today); } @Override