From 6321c6828234a2c061164ee27bfc039702282418 Mon Sep 17 00:00:00 2001 From: hzj <826100833@qq.com> Date: Mon, 3 Mar 2025 19:52:43 +0800 Subject: [PATCH] =?UTF-8?q?cvt=E7=AE=97=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../serviceimpl/line/IDataIntegrityServiceImpl.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/serviceimpl/line/IDataIntegrityServiceImpl.java b/algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/serviceimpl/line/IDataIntegrityServiceImpl.java index bd47f4f..4250537 100644 --- a/algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/serviceimpl/line/IDataIntegrityServiceImpl.java +++ b/algorithm/algorithm-boot/src/main/java/com/njcn/algorithm/serviceimpl/line/IDataIntegrityServiceImpl.java @@ -16,6 +16,7 @@ import lombok.RequiredArgsConstructor; import org.apache.commons.collections4.ListUtils; import org.springframework.stereotype.Service; +import javax.annotation.Resource; import java.util.ArrayList; import java.util.List; import java.util.Objects; @@ -29,8 +30,8 @@ import java.util.stream.Collectors; @Service @RequiredArgsConstructor public class IDataIntegrityServiceImpl implements IDataIntegrityService { - - private final CommTerminalGeneralClient commTerminalGeneralClient; + @Resource + private CommTerminalGeneralClient commTerminalGeneralClient; @Override