From f74186e5f0a1b3b0dba4c833a1f51c5b4b278780 Mon Sep 17 00:00:00 2001 From: "zangch@mesnac.com" Date: Thu, 26 Mar 2026 18:25:16 +0800 Subject: [PATCH] =?UTF-8?q?fix(DmsRecordShutDownMapper):=20=E4=BF=AE?= =?UTF-8?q?=E5=A4=8D=E6=89=B9=E9=87=8F=E6=9B=B4=E6=96=B0=E5=81=9C=E6=9C=BA?= =?UTF-8?q?=E5=8E=9F=E5=9B=A0=E5=8F=82=E6=95=B0=E7=BB=91=E5=AE=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/aucma/dms/mapper/DmsRecordShutDownMapper.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/aucma-dms/src/main/java/com/aucma/dms/mapper/DmsRecordShutDownMapper.java b/aucma-dms/src/main/java/com/aucma/dms/mapper/DmsRecordShutDownMapper.java index 83e74d9..bc4649b 100644 --- a/aucma-dms/src/main/java/com/aucma/dms/mapper/DmsRecordShutDownMapper.java +++ b/aucma-dms/src/main/java/com/aucma/dms/mapper/DmsRecordShutDownMapper.java @@ -1,6 +1,7 @@ package com.aucma.dms.mapper; import com.aucma.dms.domain.DmsRecordShutDown; +import org.apache.ibatis.annotations.Param; import java.util.List; @@ -76,5 +77,8 @@ public interface DmsRecordShutDownMapper * @param updateTime 更新时间 * @return 结果 */ - public int batchUpdateShutReason(Long[] recordShutDownIds, Long shutReasonId, Long updateBy, java.util.Date updateTime); + public int batchUpdateShutReason(@Param("recordShutDownIds") Long[] recordShutDownIds, + @Param("shutReasonId") Long shutReasonId, + @Param("updateBy") Long updateBy, + @Param("updateTime") java.util.Date updateTime); }