From 5d9c5a92c94aa3569fd73166e4bbfa9cf5743e0b Mon Sep 17 00:00:00 2001 From: Rinjae Date: Tue, 27 Jan 2026 11:16:53 +0900 Subject: [PATCH] =?UTF-8?q?2=EC=B0=A8=20=EC=9D=B4=EC=A6=9D=20=EA=B4=80?= =?UTF-8?q?=EB=A0=A8=20UMS=20=EC=97=B0=EB=8F=99=20=EC=BD=94=EB=93=9C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/eactive/eai/rms/ext/kjb/smsauth/SmsAuthService.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/eactive/eai/rms/ext/kjb/smsauth/SmsAuthService.java b/src/main/java/com/eactive/eai/rms/ext/kjb/smsauth/SmsAuthService.java index 17deb65..4769cc8 100644 --- a/src/main/java/com/eactive/eai/rms/ext/kjb/smsauth/SmsAuthService.java +++ b/src/main/java/com/eactive/eai/rms/ext/kjb/smsauth/SmsAuthService.java @@ -7,6 +7,7 @@ import com.eactive.ext.kjb.common.KjbPropertyHolder; import com.eactive.ext.kjb.common.KjbUmsException; import com.eactive.ext.kjb.ums.KjbUmsService; import com.eactive.ext.kjb.ums.UmsBizWorkCode; +import com.eactive.ext.kjb.ums.gson.IUmsGsonObject; import com.eactive.ext.kjb.ums.gson.VerifyPhoneUmsTemplate; import lombok.extern.slf4j.Slf4j; import org.apache.commons.lang3.StringUtils; @@ -120,9 +121,8 @@ public class SmsAuthService { String guid = String.format("EAPIM_EMS-%s", DateTimeFormatter.ofPattern("yyyyMMddHHmmssSSS").format(LocalDateTime.now())); - VerifyPhoneUmsTemplate content = VerifyPhoneUmsTemplate.builder() - .authNumber(authCode) - .build(); + IUmsGsonObject content = null; + content = VerifyPhoneUmsTemplate.builder().authNumber(authCode).build(); getUmsService().sendKakaoAlimTalk(guid, UmsBizWorkCode.VERIFY_PHONE, cleanedPhone, content); log.info("SMS 인증번호 발송 완료 - guid: {}, phone: {}****{}",