Browse Source

문자 전송 시 intime 데이터추가

pull/16/head
lkd9125(이경도) 10 months ago
parent
commit
4524a9da29
  1. 3
      pav-server/src/main/java/com/palnet/biz/api/acnt/crtfyhp/service/AcntCrtfyhpService.java

3
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);

Loading…
Cancel
Save