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