From 4524a9da2982a52ff3c9f4892b8e8cb8816c5636 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?lkd9125=28=EC=9D=B4=EA=B2=BD=EB=8F=84=29?= Date: Tue, 28 Nov 2023 16:59:04 +0900 Subject: [PATCH] =?UTF-8?q?=EB=AC=B8=EC=9E=90=20=EC=A0=84=EC=86=A1=20?= =?UTF-8?q?=EC=8B=9C=20intime=20=EB=8D=B0=EC=9D=B4=ED=84=B0=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../biz/api/acnt/crtfyhp/service/AcntCrtfyhpService.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pav-server/src/main/java/com/palnet/biz/api/acnt/crtfyhp/service/AcntCrtfyhpService.java b/pav-server/src/main/java/com/palnet/biz/api/acnt/crtfyhp/service/AcntCrtfyhpService.java index 4eab49b9..dea69c94 100644 --- a/pav-server/src/main/java/com/palnet/biz/api/acnt/crtfyhp/service/AcntCrtfyhpService.java +++ b/pav-server/src/main/java/com/palnet/biz/api/acnt/crtfyhp/service/AcntCrtfyhpService.java @@ -19,6 +19,7 @@ import com.palnet.biz.jpa.repository.pty.PtyCstmrBasRepository; import com.palnet.biz.jpa.repository.pty.PtyCstmrQueryRepository; import com.palnet.biz.jpa.repository.pty.SuredataRepository; import com.palnet.comn.utils.EncryptUtils; +import com.palnet.comn.utils.InstantUtils; @Service public class AcntCrtfyhpService { @@ -127,9 +128,11 @@ public class AcntCrtfyhpService { logger.info("certifyNo :: " + certifyNo); + String nowStr = InstantUtils.toDatetimeStringByFormat(Instant.now(), "yyyyMMddHHmmss"); //발송 테이블 입력 SuredataEntity entity = new SuredataEntity(); + entity.setIntime(nowStr); entity.setCallphone(hpno); entity.setMsg(msg); entity.setSubject(SUBJECT_CETIFY);