From 04b4d415a933b79d6e136d9571e364ab3e383aea Mon Sep 17 00:00:00 2001 From: eastargh Date: Mon, 10 Aug 2026 13:40:19 +0900 Subject: [PATCH] =?UTF-8?q?=EC=9D=B8=ED=84=B0=ED=8E=98=EC=9D=B4=EC=8A=A4?= =?UTF-8?q?=20=EB=AF=B8=ED=99=95=EC=9D=B8=20=EC=98=A4=EB=A5=98=20=EB=A1=9C?= =?UTF-8?q?=EA=B7=B8-=20=EC=97=85=EB=AC=B4=EB=8D=B0=EC=9D=B4=ED=83=80=20?= =?UTF-8?q?=EB=82=B4=EC=9A=A9=20=EB=B3=B5=ED=98=B8=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../onl/manage/comm/error/InboundErrorInfoManService.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/main/java/com/eactive/eai/rms/onl/manage/comm/error/InboundErrorInfoManService.java b/src/main/java/com/eactive/eai/rms/onl/manage/comm/error/InboundErrorInfoManService.java index 88b891e..4530363 100644 --- a/src/main/java/com/eactive/eai/rms/onl/manage/comm/error/InboundErrorInfoManService.java +++ b/src/main/java/com/eactive/eai/rms/onl/manage/comm/error/InboundErrorInfoManService.java @@ -1,11 +1,13 @@ package com.eactive.eai.rms.onl.manage.comm.error; +import org.apache.commons.lang3.StringUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; +import com.eactive.apim.portal.jpa.PersonalDataEncryptConverter; import com.eactive.eai.rms.common.base.BaseService; import com.eactive.eai.rms.data.entity.onl.adapter.AdapterGroupService; import com.eactive.eai.rms.data.entity.onl.inbound.error.InboundErrorInfoSearch; @@ -21,6 +23,8 @@ public class InboundErrorInfoManService extends BaseService { private AdapterGroupService adapterGroupService; + private final PersonalDataEncryptConverter encryptConverter = new PersonalDataEncryptConverter(); + @Autowired public InboundErrorInfoManService(InboundErrorInfoService inboundErrorInfoService, InboundErrorInfoUIMapper inboundErrorInfoUIMapper, AdapterGroupService adapterGroupService) { @@ -44,6 +48,10 @@ public class InboundErrorInfoManService extends BaseService { }); } + if (StringUtils.isNotBlank(ui.getBzwkDataCtnt())) { + ui.setBzwkDataCtnt(encryptConverter.convertToEntityAttribute(ui.getBzwkDataCtnt())); + } + return ui; }