From 3d1f5a80bc6637d01c3b28966c51dd71d1c2ea43 Mon Sep 17 00:00:00 2001 From: kami <605128600@qq.com> Date: Mon, 18 Nov 2024 09:49:16 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B1=AA=E6=96=B0=E8=B6=85=E7=9A=84=E4=B8=80?= =?UTF-8?q?=E4=B8=AA=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pom.xml | 2 +- .../biutag/supervision/flow/action/ApplyCompletionAction.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 8ef4ec0..62910af 100644 --- a/pom.xml +++ b/pom.xml @@ -187,7 +187,7 @@ src/main/resources - false + true src/main/resources diff --git a/src/main/java/com/biutag/supervision/flow/action/ApplyCompletionAction.java b/src/main/java/com/biutag/supervision/flow/action/ApplyCompletionAction.java index 71085a1..ee96306 100644 --- a/src/main/java/com/biutag/supervision/flow/action/ApplyCompletionAction.java +++ b/src/main/java/com/biutag/supervision/flow/action/ApplyCompletionAction.java @@ -90,7 +90,7 @@ public class ApplyCompletionAction implements Action { .filter(leader -> leader.getBlameIdCodes().contains(item.getBlameIdCode())) .toList(); if(!blameLeaders.isEmpty()) { - BeanUtil.copyProperties(blameLeaders.getFirst(), negativeBlame); + BeanUtil.copyProperties(blameLeaders.get(0), negativeBlame); } }