전화번호 정규화 적용: 숫자 추출 유틸(PhoneNumberUtil) 활용

This commit is contained in:
Rinjae
2026-06-30 09:05:44 +09:00
parent d60809ccff
commit 401fbbc41f
@@ -1,5 +1,6 @@
package com.eactive.ext.kjb.ums;
import com.eactive.apim.portal.common.util.PhoneNumberUtil;
import com.eactive.apim.portal.template.entity.MessageCode;
import com.eactive.apim.portal.template.entity.MessageRequest;
import com.eactive.ext.kjb.common.KjbProperty;
@@ -128,7 +129,7 @@ public class KjbUmsService {
.messageIdentityNo(guid)
.msgBizWorkCode(bizWorkCode.getCode())
.content(content)
.cellphone(cpno)
.cellphone(PhoneNumberUtil.digitsOnly(cpno))
.msgSndChnlCd(UmsRequestPayload.ChannelCode.KM)
.build();