From d82dccea6d1b5b778797b8d666daf72c8090c50b Mon Sep 17 00:00:00 2001 From: sxu <602087911@qq.com> Date: Thu, 31 Oct 2024 19:48:07 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=B4=E4=BF=AE=E5=91=98=E6=9C=BA=E5=85=B7?= =?UTF-8?q?=E5=85=B3=E8=81=94=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../bonus/material/ma/service/impl/TypeRepairServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bonus-modules/bonus-material/src/main/java/com/bonus/material/ma/service/impl/TypeRepairServiceImpl.java b/bonus-modules/bonus-material/src/main/java/com/bonus/material/ma/service/impl/TypeRepairServiceImpl.java index 456a9298..b4668065 100644 --- a/bonus-modules/bonus-material/src/main/java/com/bonus/material/ma/service/impl/TypeRepairServiceImpl.java +++ b/bonus-modules/bonus-material/src/main/java/com/bonus/material/ma/service/impl/TypeRepairServiceImpl.java @@ -67,7 +67,7 @@ public class TypeRepairServiceImpl implements ITypeRepairService { if (CollectionUtils.isEmpty(typeRepairs)) { return 0; } - typeRepairs.forEach(typeKeeper -> typeKeeper.setCreateTime(DateUtils.getNowDate())); + typeRepairs.forEach(typeRepair -> typeRepair.setCreateTime(DateUtils.getNowDate())); typeRepairMapper.deleteTypeRepairByUserIdAndTypeId(typeRepairs); return typeRepairMapper.insertTypeRepair(typeRepairs); }