diff --git a/src/main/java/cokr/xit/ens/core/utils/DateUtil.java b/src/main/java/cokr/xit/ens/core/utils/DateUtil.java index 3b7f7d6..3cbe72d 100644 --- a/src/main/java/cokr/xit/ens/core/utils/DateUtil.java +++ b/src/main/java/cokr/xit/ens/core/utils/DateUtil.java @@ -15,6 +15,7 @@ import lombok.extern.slf4j.*; @Slf4j public class DateUtil { + private static final String DEFAULT_YMD_DT_FMT ="yyyy-MM-dd HH:mm:ss"; /** *
메소드 설명: 절대시간(단위: milliesecond)을 현재 시간으로 반환 한다.@@ -415,7 +416,7 @@ public class DateUtil { */ public static String getTimeOfTimeT(String timeT, String fmt) { return LocalDateTime.parse(timeT, DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm:ss")) - .format(DateTimeFormatter.ofPattern(StringUtils.isEmpty(fmt)? "yyyy-MM-dd HH:mm:ss": fmt)); + .format(DateTimeFormatter.ofPattern(StringUtils.isEmpty(fmt)? DEFAULT_YMD_DT_FMT: fmt)); } /** @@ -428,4 +429,34 @@ public class DateUtil { return LocalDateTime.parse(time, DateTimeFormatter.ofPattern("yyyyMMddHHmmss")) .format(DateTimeFormatter.ofPattern("yyyy-MM-dd'T'HH:mm:ss")); } + + /** + * 오늘 날짜 : 년-월-일 시분초 + * + * @param userFormat 사용자가 원하는 포멧 + * @return String + */ + public static String getTodayAndNowTime(final String userFormat) { + String pattern = ""; + + try { + pattern = DEFAULT_YMD_DT_FMT; + if (!org.apache.commons.lang3.StringUtils.isEmpty(userFormat)) { + pattern = userFormat; + } + } catch (Exception e) { + log.error("DateUtils::getTodayAndNowTime", e); + } + + return localDateTime().format(DateTimeFormatter.ofPattern(pattern)); + } + + /** + * LocalDateTime 객체 반환 + * + * @return LocalDateTime + */ + public static LocalDateTime localDateTime() { + return LocalDateTime.now(); + } } diff --git a/src/main/java/cokr/xit/ens/modules/nice/model/NiceDTO.java b/src/main/java/cokr/xit/ens/modules/nice/model/NiceDTO.java new file mode 100644 index 0000000..245897e --- /dev/null +++ b/src/main/java/cokr/xit/ens/modules/nice/model/NiceDTO.java @@ -0,0 +1,986 @@ +package cokr.xit.ens.modules.nice.model; + +import java.io.*; +import java.util.*; +import java.util.stream.*; + +import javax.validation.*; +import javax.validation.constraints.*; + +import org.apache.commons.lang3.*; + +import cokr.xit.ens.core.utils.*; +import io.swagger.v3.oas.annotations.media.*; +import lombok.*; + +/** + *
+ * description : + * packageName : cokr.xit.ens.modules.nice.model + * fileName : NiceDTO + * author : limju + * date : 2024 9월 23 + * ====================================================================== + * 변경일 변경자 변경 내용 + * ---------------------------------------------------------------------- + * 2024 9월 23 limju 최초 생성 + * + *+ */ +public class NiceDTO { + + @Schema(name = "NiceRequest", description = "NICE CI 전문 DTO") + @Data + @NoArgsConstructor + @AllArgsConstructor + @Builder + public static class NiceRequest implements Serializable { + private static final long serialVersionUID = 1L; + + //---------------------------------------------------------------------------------------------- + // TR-CODE : 0 ~ 9 자리 + //---------------------------------------------------------------------------------------------- + /** + *
+ * TR-CODE + * 회원사 고유키 - 요청시 필수 max: 9 + *+ */ + @Schema(requiredMode = Schema.RequiredMode.REQUIRED, title = "TR Code", example = " ") + @Size(min = 0, max = 9, message = "트랜잭션 코드는 0~9자리 입니다.") + @Builder.Default + private String trCode = StringUtils.rightPad(StringUtils.EMPTY, 9, StringUtils.SPACE); + public void setTrCode(String trCode) { + this.trCode = StringUtils.rightPad(nvl(trCode), 9, StringUtils.SPACE); + } + //---------------------------------------------------------------------------------------------- + + //---------------------------------------------------------------------------------------------- + // 공통부 : 100 자리 + //---------------------------------------------------------------------------------------------- + @Schema(requiredMode = Schema.RequiredMode.REQUIRED) + @Valid + NiceCommon niceCommon; + + /** + *
+ * 공란 - 16 자리 + *+ */ + @Schema(title = "공란", example = " ") + @Size(min = 16, max = 16, message = "공란(16자리)") + @Builder.Default + private String commonEmptyField = StringUtils.rightPad(StringUtils.EMPTY, 16, StringUtils.SPACE); + + /** + *
+ * 조회동의사유 + *+ */ + @Schema(title = "조회동의사유", example = " ") + @Size(min = 1, max = 1, message = "조회동의사유는 1자리 입니다") + @Builder.Default + private String queryConsentReason = StringUtils.SPACE; + + //---------------------------------------------------------------------------------------------- + // 공통부 : 100 자리 + //---------------------------------------------------------------------------------------------- + + //---------------------------------------------------------------------------------------------- + // 개별요청부 : 3000 자리 + //---------------------------------------------------------------------------------------------- + /** + *
+ * 조회사유: 필수 2자리 + *+ */ + @Schema(requiredMode = Schema.RequiredMode.REQUIRED, title = "조회사유", example = " ") + @Size(min = 2, max = 2, message = "조회사유는 2자리 입니다") + @Builder.Default + private String queryReason = StringUtils.rightPad(StringUtils.EMPTY, 2, StringUtils.SPACE); + public void setQueryReason(String queryReason) { + this.queryReason = StringUtils.rightPad(nvl(queryReason), 1, StringUtils.SPACE); + } + + /** + *
+ * 조회요청건수: 필수 2자리 + * 최대 48 + *+ */ + @Schema(requiredMode = Schema.RequiredMode.REQUIRED, title = "조회요청건수", example = " ") + @Max(value = 48, message = "조회요청 최대건수는 48입니다") + @Builder.Default + private String queryReqCnt = StringUtils.rightPad(StringUtils.EMPTY, 2, StringUtils.SPACE); + public void setQueryReqCnt(Integer queryReqCnt) { + this.queryReqCnt = StringUtils.rightPad(nvl(queryReqCnt == null? "": queryReqCnt.toString()), 1, StringUtils.SPACE); + } + + /** + *
+ * SMS발송요청구분코드: 필수 1자리 + * 1 ~ 3의 경우 발송메세지와 발신번호 필수 + * 0 : 미요청, + * 1: 1순위연락처로 발송, + * 2: 1 ~ 2 순위 연락처중 최우선순위 1개로 발송 + * 3: 1 ~ 3 순위 연락처중 최우선순위 1개로 발송 + *+ */ + @Schema(requiredMode = Schema.RequiredMode.REQUIRED, title = "SMS발송요청구분코드", example = " ", allowableValues = {"0", "1", "2", "3"}) + @Pattern(regexp = "[0-3]", message = "SMS발송요청구분코드 0 ~ 3 입니다(1자리)") + @Builder.Default + private String smsSndReqCode = StringUtils.SPACE;; + + /** + *
+ * 발송메세지: 10 ~ 2000자리 + * 발송요청구분(smsSndReqCode)가 1, 2, 3인 경우 필수 + *+ */ + @Schema(title = "SMS 발송메세지", example = " ") + @Pattern(regexp = "^$|[\\s]{10,2000}", message = "SMS발송메세지는 10 ~ 2000자리 입니다") + @Builder.Default + private String sndMessage = StringUtils.rightPad(StringUtils.EMPTY, 2000, StringUtils.SPACE); + public void setSndMessage(String sndMessage) { + this.sndMessage = StringUtils.rightPad(nvl(sndMessage), 2000, StringUtils.SPACE); + } + + /** + *
+ * 발신번호: 12자리 + * 발송요청구분(smsSndReqCode)가 1, 2, 3인 경우 필수 + *+ */ + @Schema(title = "SMS 발신번호", example = " ") + @Pattern(regexp = "^$|[\\d]{3,12}", message = "SMS 발신번호는 3 ~ 12자리 입니다") + @Builder.Default + private String sndPhoneNo = StringUtils.rightPad(StringUtils.EMPTY, 12, StringUtils.SPACE); + public void setSndPhoneNo(String sndPhoneNo) { + this.sndPhoneNo = StringUtils.rightPad(nvl(sndPhoneNo), 12, StringUtils.SPACE); + } + + /** + *
+ * 연락처조회구분: 1자리 + * default: 3 + * 1: 1순위만 조회, + * 2: 2순위 이내 조회 + * 3: 3순위 이내 조회 + *+ */ + @Schema(requiredMode = Schema.RequiredMode.REQUIRED, title = "연락처조회구분코드", example = " ", allowableValues = {"1", "2", "3"}) + @Pattern(regexp = "[1-3]", message = "연락처조회구분 코드는 1 ~ 3 입니다(1자리)") + @Builder.Default + private String contactSearchCode = "3"; + + /** + *
+ * 알림톡발송요청구분: 1자리 + *+ */ + @Schema(requiredMode = Schema.RequiredMode.REQUIRED, title = "알림톡발송요청구분", example = " ") + @Size(min = 1, max = 1, message = "알림톡발송요청구분 코드는 1자리 입니다") + @Builder.Default + private String alimtalkSndReqDiv = StringUtils.SPACE; + + /** + *
+ * 알림톡템플릿코드: 100자리 + *+ */ + @Schema(requiredMode = Schema.RequiredMode.REQUIRED, title = "알림톡발송요청구분", example = " ") + @Size(min = 100, max = 100, message = "알림톡발송요청구분 코드는 1자리 입니다") + @Builder.Default + private String alimtalkTmpltCode = StringUtils.rightPad(StringUtils.EMPTY, 100, StringUtils.SPACE); + public void setAlimtalkTmpltCode(String alimtalkTmpltCode) { + this.alimtalkTmpltCode = StringUtils.rightPad(nvl(alimtalkTmpltCode), 100, StringUtils.SPACE); + } + + /** + *
+ * 버튼요청건수: 1자리 + * 최대 5 + *+ */ + @Schema(requiredMode = Schema.RequiredMode.REQUIRED, title = "조회요청건수", example = " ") + @Max(value = 5, message = "조회요청 최대건수는 48입니다") + @Builder.Default + private String btnReqCnt = StringUtils.SPACE; + public void setBtnReqCnt(Integer btnReqCnt) { + this.btnReqCnt = StringUtils.rightPad(nvl(btnReqCnt == null ? "" : btnReqCnt.toString()), 1, + StringUtils.SPACE); + } + + /** + *
+ * 공란 - 880 + *+ */ + @Schema(title = "공란", example = " ") + @Size(min = 880, max = 880, message = "공란(880자리)") + @Builder.Default + private String privateEmptyField = StringUtils.rightPad(StringUtils.EMPTY, 880, StringUtils.SPACE); + //---------------------------------------------------------------------------------------------- + // 개별요청부 : 3000 자리 + //---------------------------------------------------------------------------------------------- + + //---------------------------------------------------------------------------------------------- + // 조회요청부 반복: 50 자리 + //---------------------------------------------------------------------------------------------- + List
+ * TR-CODE + * 회원사 고유키 - 요청시 필수 max: 9 + *+ */ + @Schema(title = "TR Code", example = " ") + @Size(min = 0, max = 9, message = "트랜잭션 코드는 0~9자리 입니다.") + @Builder.Default + private String trCode = StringUtils.rightPad(StringUtils.EMPTY, 9, StringUtils.SPACE); + public void setTrCode(String trCode) { + this.trCode = StringUtils.rightPad(nvl(trCode), 9, StringUtils.SPACE); + } + + //---------------------------------------------------------------------------------------------- + // 공통부 : 100 자리 + //---------------------------------------------------------------------------------------------- + @Schema(requiredMode = Schema.RequiredMode.REQUIRED) + @Valid + NiceCommon niceCommon; + + /** + *
+ * 공란 - 16 자리 + *+ */ + @Schema(title = "공란", example = " ") + @Size(min = 16, max = 17, message = "공란(17자리)") + @Builder.Default + private String commonEmptyField = StringUtils.rightPad(StringUtils.EMPTY, 17, StringUtils.SPACE); + //---------------------------------------------------------------------------------------------- + // 공통부 : 100 자리 + //---------------------------------------------------------------------------------------------- + + //---------------------------------------------------------------------------------------------- + // 개별응답부 : 2100 자리 + //---------------------------------------------------------------------------------------------- + /** + *
+ * 응답건수: 필수 2자리 + * 최대 48 + *+ */ + @Schema(requiredMode = Schema.RequiredMode.REQUIRED, title = "응답 건수", example = " ") + @Max(value = 48, message = "응답 최대건수는 48입니다") + @Builder.Default + private String resCnt = StringUtils.rightPad(StringUtils.EMPTY, 2, StringUtils.SPACE); + public void setResCnt(String resCnt) { + this.resCnt = StringUtils.rightPad(nvl(resCnt), 2, StringUtils.SPACE); + } + + /** + *
+ * SMS발송요청구분코드: 필수 1자리 + * 1 ~ 3의 경우 발송메세지와 발신번호 필수 + * 0 : 미요청, + * 1: 1순위연락처로 발송, + * 2: 1 ~ 2 순위 연락처중 최우선순위 1개로 발송 + * 3: 1 ~ 3 순위 연락처중 최우선순위 1개로 발송 + *+ */ + @Schema(requiredMode = Schema.RequiredMode.REQUIRED, title = "SMS발송요청구분코드", example = " ", allowableValues = {"0", "1", "2", "3"}) + @Pattern(regexp = "[0-3]", message = "SMS발송요청구분코드 0 ~ 3 입니다(1자리)") + @Builder.Default + private String smsSndReqCode = StringUtils.SPACE;; + + /** + *
+ * 발송메세지: 10 ~ 2000자리 + * 발송요청구분(smsSndReqCode)가 1, 2, 3인 경우 필수 + *+ */ + @Schema(title = "SMS 발송메세지", example = " ") + @Pattern(regexp = "^$|[\\s]{10,2000}", message = "SMS발송메세지는 10 ~ 2000자리 입니다") + @Builder.Default + private String sndMessage = StringUtils.rightPad(StringUtils.EMPTY, 2000, StringUtils.SPACE); + public void setSndMessage(String sndMessage) { + this.sndMessage = StringUtils.rightPad(nvl(sndMessage), 2000, StringUtils.SPACE); + } + + /** + *
+ * 발신번호: 12자리 + * 발송요청구분(smsSndReqCode)가 1, 2, 3인 경우 필수 + *+ */ + @Schema(title = "SMS 발신번호", example = " ") + @Pattern(regexp = "^$|[\\d]{3,12}", message = "SMS 발신번호는 3 ~ 12자리 입니다") + @Builder.Default + private String sndPhoneNo = StringUtils.rightPad(StringUtils.EMPTY, 12, StringUtils.SPACE); + public void setSndPhoneNo(String sndPhoneNo) { + this.sndPhoneNo = StringUtils.rightPad(nvl(sndPhoneNo), 12, StringUtils.SPACE); + } + + /** + *
+ * 연락처조회구분: 1자리 + * default: 3 + * 1: 1순위만 조회, + * 2: 2순위 이내 조회 + * 3: 3순위 이내 조회 + *+ */ + @Schema(requiredMode = Schema.RequiredMode.REQUIRED, title = "연락처조회구분코드", example = " ", allowableValues = {"1", "2", "3"}) + @Pattern(regexp = "[1-3]", message = "연락처조회구분 코드는 1 ~ 3 입니다(1자리)") + @Builder.Default + private String contactSearchCode = "3"; + + /** + *
+ * 공란 - 84 자리 + *+ */ + @Schema(title = "공란", example = " ") + @Size(min = 84, max = 84, message = "공란(84자리)") + @Builder.Default + private String privateEmptyField = StringUtils.rightPad(StringUtils.EMPTY, 84, StringUtils.SPACE); + //---------------------------------------------------------------------------------------------- + // 개별응답부 : 2100 자리 + //---------------------------------------------------------------------------------------------- + + //---------------------------------------------------------------------------------------------- + // 응답반복부 : 110 자리 + //---------------------------------------------------------------------------------------------- + List
+ * 개인/사업자/법인구분 - 1자리 + * 1(개인) 고정 + *+ */ + @Schema(title = "개인/사업자/법인구분", example = "1") + @Size(min = 1, max = 1, message = "개인/사업자/법인구분은 1자리 입니다.") + @Builder.Default + private String idDiv = "1"; + + /** + *
+ * 주민번호 - 13자리 + *+ */ + @Schema(title = "주민번호", example = " ") + @Size(min = 13, max = 13, message = "주민번호는 13자리 입니다.") + @Builder.Default + private String jumin = StringUtils.rightPad(StringUtils.EMPTY, 13, StringUtils.SPACE); + public void setJumin(String jumin) { + this.jumin = StringUtils.rightPad(nvl(jumin), 13, StringUtils.SPACE); + } + + /** + *
+ * 공란 - 880 + *+ */ + @Schema(title = "공란", example = " ") + @Size(min = 36, max = 36, message = "공란(36자리)") + @Builder.Default + private String emptyField = StringUtils.rightPad(StringUtils.EMPTY, 36, StringUtils.SPACE); + + public String getAsString() { + StringBuilder sb = new StringBuilder(); + sb.append(idDiv); + sb.append(jumin); + sb.append(emptyField); + return sb.toString(); + } + } + + @Schema(name = "ButtonRequest", description = "NICE CI 버튼 요청 DTO") + @Data + @NoArgsConstructor + @AllArgsConstructor + @Builder + public static class ButtonRequest { + /** + *
+ * 버튼타입 - 2자리 + * WL|AL + *+ */ + @Schema(requiredMode = Schema.RequiredMode.REQUIRED, title = "버튼타입", example = " ", allowableValues = {"WL", "AL"}) + @Pattern(regexp = "[WL|AL]", message = "버튼 타입은 2자리 입니다.") + @Builder.Default + private String btnType = "WL"; + public void setBtnType(String btnType) { + this.btnType = StringUtils.rightPad(nvl(btnType), 2, StringUtils.SPACE); + } + + /** + *
+ * 버튼이름 - 56자리 + *+ */ + @Schema(title = "버튼이름", example = "1") + @Size(min = 56, max = 56, message = "버튼이름은 56자리 입니다.") + @Builder.Default + private String btnName = StringUtils.rightPad(StringUtils.EMPTY, 56, StringUtils.SPACE); + public void setBtnName(String jumin) { + this.btnName = StringUtils.rightPad(nvl(btnName), 56, StringUtils.SPACE); + } + + /** + *
+ * 버튼URL웹링크1 - 1000자리 + * 버튼타입(btnType)이 WL일 경우 모마일 URL, AL일 경우 Android scheme + *+ */ + @Schema(title = "버튼URL웹링크1", example = " ") + @Size(min = 1000, max = 1000, message = "버튼URL웹링크1 은 1000자리 입니다.") + @Builder.Default + private String btnUrlWebLink1 = StringUtils.rightPad(StringUtils.EMPTY, 1000, StringUtils.SPACE); + public void setBtnUrlWebLink1(String btnUrlWebLink1) { + this.btnUrlWebLink1 = StringUtils.rightPad(nvl(btnUrlWebLink1), 1000, StringUtils.SPACE); + } + + /** + *
+ * 버튼URL웹링크2 - 1000자리 + * 버튼타입(btnType)이 WL일 경우 PC URL, AL일 경우 IOS scheme + *+ */ + @Schema(title = "버튼URL웹링크2", example = " ") + @Size(min = 1000, max = 1000, message = "버튼URL웹링크2 은 1000자리 입니다.") + @Builder.Default + private String btnUrlWebLink2 = StringUtils.rightPad(StringUtils.EMPTY, 1000, StringUtils.SPACE); + public void setBtnUrlWebLink2(String btnUrlWebLink2) { + this.btnUrlWebLink2 = StringUtils.rightPad(nvl(btnUrlWebLink2), 1000, StringUtils.SPACE); + } + + /** + *
+ * 공란 - 942 + *+ */ + @Schema(title = "공란", example = " ") + @Size(min = 942, max = 942, message = "공란(36자리)") + @Builder.Default + private String emptyField = StringUtils.rightPad(StringUtils.EMPTY, 942, StringUtils.SPACE); + + public String getAsString() { + StringBuilder sb = new StringBuilder(); + sb.append(btnType); + sb.append(btnName); + sb.append(btnUrlWebLink1); + sb.append(btnUrlWebLink2); + sb.append(emptyField); + return sb.toString(); + } + } + + @Schema(name = "ResResult", description = "NICE CI 조회 응답 결과 DTO") + @Data + @NoArgsConstructor + @AllArgsConstructor + @Builder + public static class ResResult { + /** + *
+ * 개인/사업자/법인구분 - 1자리 + * 1(개인) 고정 + *+ */ + @Schema(title = "개인/사업자/법인구분", example = "1") + @Size(min = 1, max = 1, message = "개인/사업자/법인구분은 1자리 입니다.") + @Builder.Default + private String idDiv = "1"; + + /** + *
+ * 주민번호 - 13자리 + *+ */ + @Schema(title = "주민번호", example = " ") + @Size(min = 13, max = 13, message = "주민번호는 13자리 입니다.") + @Builder.Default + private String jumin = StringUtils.rightPad(StringUtils.EMPTY, 13, StringUtils.SPACE); + public void setJumin(String jumin) { + this.jumin = StringUtils.rightPad(nvl(jumin), 13, StringUtils.SPACE); + } + + /** + *
+ * 이름 - 20자리 + *+ */ + @Schema(title = "이름", example = " ") + @Size(min = 20, max = 20, message = "이름은 20자리 입니다.") + @Builder.Default + private String name = StringUtils.rightPad(StringUtils.EMPTY, 20, StringUtils.SPACE); + public void setName(String name) { + this.name = StringUtils.rightPad(nvl(name), 20, StringUtils.SPACE); + } + + /** + *
+ * 1순위연락처 - 11자리 + *+ */ + @Schema(title = "1순위연락처", example = " ") + @Size(min = 11, max = 11, message = "1순위연락처는 11자리 입니다.") + @Builder.Default + private String contractOf1st = StringUtils.rightPad(StringUtils.EMPTY, 11, StringUtils.SPACE); + public void setContractOf1st(String contractOf1st) { + this.contractOf1st = StringUtils.rightPad(nvl(contractOf1st), 11, StringUtils.SPACE); + } + + /** + *
+ * 2순위연락처 - 11자리 + *+ */ + @Schema(title = "2순위연락처", example = " ") + @Size(min = 11, max = 11, message = "2순위연락처는 11자리 입니다.") + @Builder.Default + private String contractOf2nd = StringUtils.rightPad(StringUtils.EMPTY, 11, StringUtils.SPACE); + public void setContractOf2nd(String contractOf2nd) { + this.contractOf2nd = StringUtils.rightPad(nvl(contractOf2nd), 11, StringUtils.SPACE); + } + + /** + *
+ * 3순위연락처 - 11자리 + *+ */ + @Schema(title = "3순위연락처", example = " ") + @Size(min = 11, max = 11, message = "3순위연락처는 11자리 입니다.") + @Builder.Default + private String contractOf3rd = StringUtils.rightPad(StringUtils.EMPTY, 11, StringUtils.SPACE); + public void setContractOf3rd(String contractOf3rd) { + this.contractOf3rd = StringUtils.rightPad(nvl(contractOf3rd), 11, StringUtils.SPACE); + } + + /** + *
+ * 결과구분코드 - 2자리 + * 00 정상(SMS미발송시 조회정상, SMS발송시 발송정상) + * 01 주민번호오류 + * 02 데이터 없음 + * 10 진행중(연락처조회 정상 건중 SMS발송 이전) + * 99 기타오류 + *+ */ + @Schema(title = "결과구분코드", example = " ", allowableValues = {"00", "01", "02", "10", "99"}) + @Size(min = 11, max = 11, message = "결과구분코드는 2자리 입니다.") + @Builder.Default + private String rsltDivCode = StringUtils.rightPad(StringUtils.EMPTY, 2, StringUtils.SPACE); + public void setRsltDivCode(String rsltDivCode) { + this.rsltDivCode = StringUtils.rightPad(nvl(rsltDivCode), 2, StringUtils.SPACE); + } + + /** + *
+ * SMS발송연락처순위 - 1자리 + * 0 : 미요청, + * 1: 1순위연락처로 발송, + * 2: 2 순위 연락처로 발송 + * 3: 3 순위 연락처로 발송 + *+ */ + @Schema(title = "SMS발송연락처순위", example = " ", allowableValues = {"0", "1", "2", "3"}) + @Size(min = 1, max = 1, message = "SMS발송연락처순위는 1자리 입니다.") + @Builder.Default + private String smsSndContractOrder = "1"; + + /** + *
+ * SMS발송연락처번호 - 11자리 + *+ */ + @Schema(title = "SMS발송연락처번호", example = " ") + @Size(min = 11, max = 11, message = "SMS발송연락처번호는 11자리 입니다.") + @Builder.Default + private String smsSndContractNo = StringUtils.rightPad(StringUtils.EMPTY, 11, StringUtils.SPACE); + public void setSmsSndContractNo(String smsSndContractNo) { + this.smsSndContractNo = StringUtils.rightPad(nvl(smsSndContractNo), 11, StringUtils.SPACE); + } + + /** + *
+ * SMS발송예정일시 - 14자리 + *+ */ + @Schema(title = "SMS발송예정일시", example = " ") + @Size(min = 14, max = 14, message = "SMS발송예정일시는 14자리 입니다.") + @Builder.Default + private String smsSndWillDt = StringUtils.rightPad(StringUtils.EMPTY, 14, StringUtils.SPACE); + public void setSmsSndWillDt(String smsSndWillDt) { + this.smsSndWillDt = StringUtils.rightPad(nvl(smsSndWillDt), 14, StringUtils.SPACE); + } + + /** + *
+ * 공란 - 15 + *+ */ + @Schema(title = "공란", example = " ") + @Size(min = 15, max = 15, message = "공란(36자리)") + @Builder.Default + private String emptyField = StringUtils.rightPad(StringUtils.EMPTY, 15, StringUtils.SPACE); + + public String getAsString() { + StringBuilder sb = new StringBuilder(); + sb.append(idDiv); + sb.append(jumin); + sb.append(name); + sb.append(contractOf1st); + sb.append(contractOf2nd); + sb.append(contractOf3rd); + sb.append(rsltDivCode); + sb.append(smsSndContractOrder); + sb.append(smsSndContractNo); + sb.append(smsSndWillDt); + sb.append(emptyField); + return sb.toString(); + } + } + + @Schema(name = "NiceCommon", description = "NICE CI 전문 공통 DTO") + @Data + @NoArgsConstructor + @AllArgsConstructor + @Builder + public static class NiceCommon { + /** + *
+ * 전문그룹코드 - 요청시 필수 9자리 + * "NICEIF " + *+ */ + @Schema(requiredMode = Schema.RequiredMode.REQUIRED, title = "전문그룹코드(9자리)", example = "NICEIF ") + @Size(min = 9, max = 9, message = "전문그룹코드는 9자리 입니다.") + @Builder.Default + private String grpCode = "NICEIF "; + public void setGrpCode(String grpCode) { + this.grpCode = StringUtils.rightPad(nvl(grpCode), 9, StringUtils.SPACE); + } + + /** + *
+ * 거래종별코드 - 요청/응답 필수 4자리 + * 조회요청코드 "0200" set + * NICE 응답시 "0210" set + *+ */ + @Schema(requiredMode = Schema.RequiredMode.REQUIRED, title = "거래종별코드(4자리)", example = "0200") + @Size(min = 4, max = 4, message = "거래 종별 코드는 4자리 입니다.") + @Builder.Default + private String trType = "0200"; + public void setTrType(String trType) { + this.trType = StringUtils.rightPad(nvl(trType), 4, StringUtils.SPACE); + } + + /** + *
+ * 거래구분코드 - 필수 5자리 + * 단위업무구분코드 "31895" set + *+ */ + @Schema(requiredMode = Schema.RequiredMode.REQUIRED, title = "거래구분코드(5자리)", example = "31895") + @Size(min = 5, max = 5, message = "거래 구분 코드는 5자리 입니다.") + @Builder.Default + private String trClassification = "31895"; + public void setTrClassification(String trClassification) { + this.trClassification = StringUtils.rightPad(nvl(trClassification), 5, StringUtils.SPACE); + } + + /** + *
+ * 송수신플래그 - 요청/응답 필수 1자리 + * 전문을 발생시킨 기관을 나타내는 코드 : "B" set + * NICE 응답시 "N" set + *+ */ + @Schema(requiredMode = Schema.RequiredMode.REQUIRED, title = "송수신플래그(1자리)", example = "B") + @Size(min = 1, max = 1, message = "송수신 플래그는 1자리 입니다.") + @Builder.Default + private String sndAndRcvFlag = "B"; + + /** + *
+ * 단말기구분 - 필수 3자리 + * "503" set + *+ */ + @Schema(requiredMode = Schema.RequiredMode.REQUIRED, title = "단말기구분(3자리)", example = "503") + @Size(min = 1, max = 1, message = "단말기 구분은 3자리 입니다.") + @Builder.Default + private String deviceClassification = "503"; + public void setDeviceClassification(String deviceClassification) { + this.deviceClassification = StringUtils.rightPad(nvl(deviceClassification), 3, StringUtils.SPACE); + } + + /** + *
+ * 응답코드 - 4자리 NICE 응답시 필수 4자리 + * P000 정상 + * P001 주민번호오류 + * P005 참가기관ID오류 + * E998 내부TimeOut발생 + * E999 내부시스템오류 + * S602 개별 요청부 오류 + * S702 서비스이용권한 오류 + * S722 Server System 오류 + * S316 발신자번호 오류(지역번호를 포함하여 숫자만 입력 요망) + * S317 발송문구에 10자리 이상 연속된 숫자는 입력 불가 + *+ */ + @Schema(title = "응답코드(4자리)", example = " ") + @Pattern(regexp = "^$|^[P|E|S][\\d]{3}$", message = "응답코드(4자리)는 4자리 입니다") + @Builder.Default + private String rsltCode = StringUtils.rightPad(StringUtils.EMPTY, 4, StringUtils.SPACE); + public void setRsltCode(String rsltCode) { + this.rsltCode = StringUtils.rightPad(nvl(rsltCode), 4, StringUtils.SPACE); + } + + /** + *
+ * 참가기관ID - 요청 필수 9자리 + * CB정보 H/I용으로 NICE에서 부여한 USER ID + *+ */ + @Schema(requiredMode = Schema.RequiredMode.REQUIRED, title = "참가기관ID(9자리)", example = "503") + @Size(min = 9, max = 9, message = "참가기관ID는 3자리 입니다.") + @Builder.Default + private String orgId = StringUtils.rightPad(StringUtils.EMPTY, 9, StringUtils.SPACE); + public void setOrgId(String orgId) { + this.orgId = StringUtils.rightPad(nvl(orgId), 9, StringUtils.SPACE); + } + + /** + *
+ * 기관전문관리번호 - 요청 필수 10자리 + * 기관에서 전문관리를 위해 요청전문 전송시 set + *+ */ + @Schema(requiredMode = Schema.RequiredMode.REQUIRED, title = "기관전문관리번호(10자리)", example = " ") + @Size(min = 10, max = 10, message = "기관전문관리번호는 10자리 입니다.") + @Builder.Default + private String orgMngNo = StringUtils.rightPad(StringUtils.EMPTY, 10, StringUtils.SPACE); + public void setOrgMngNo(String orgMngNo) { + this.orgMngNo = StringUtils.rightPad(nvl(orgMngNo), 10, StringUtils.SPACE); + } + + /** + *
+ * 기관전문전송시간 - 요청 필수 14자리 + * 기관에서 요청전문 전송시 set + *+ */ + @Schema(requiredMode = Schema.RequiredMode.REQUIRED, title = "기관전문전송시간(14자리)", example = " ") + @Size(min = 14, max = 14, message = "기관전문전송시간은 14자리 입니다.") + @Builder.Default + private String orgSndDt = DateUtil.getTodayAndNowTime("yyyyMMddHHmmss"); + public void setOrgSndDt(String orgSndDt) { + this.orgSndDt = StringUtils.rightPad(nvl(orgSndDt), 14, StringUtils.SPACE); + } + + /** + *
+ * NICE전문관리번호 - 응답 필수 10자리 + * NICE에서 전문관리를 위해 응답전문 전송시 set + *+ */ + @Schema(title = "NICE전문관리번호(10자리)", example = " ") + @Size(min = 10, max = 10, message = "NICE전문관리번호 10자리 입니다.") + @Builder.Default + private String niceMngNo = StringUtils.rightPad(StringUtils.EMPTY, 10, StringUtils.SPACE); + public void setNiceMngNo(String niceMngNo) { + this.niceMngNo = StringUtils.rightPad(nvl(niceMngNo), 10, StringUtils.SPACE); + } + + /** + *
+ * NICE전문전송시간 - 응답 필수 14자리 + * NICE에서 응답전문 전송시 set + *+ */ + @Schema(title = "NICE전문전송시간(14자리)", example = " ") + @Size(min = 14, max = 14, message = "NICE전문전송시간은 14자리 입니다.") + @Builder.Default + private String niceSndDt = StringUtils.rightPad(StringUtils.EMPTY, 14, StringUtils.SPACE); + public void setNiceSndDt(String niceSndDt) { + this.niceSndDt = StringUtils.rightPad(nvl(niceSndDt), 14, StringUtils.SPACE); + } + + public String getAsString() { + StringBuilder sb = new StringBuilder(); + sb.append(grpCode); + sb.append(trType); + sb.append(trClassification); + sb.append(sndAndRcvFlag); + sb.append(deviceClassification); + sb.append(rsltCode); + sb.append(orgId); + sb.append(orgMngNo); + sb.append(orgSndDt); + sb.append(niceMngNo); + sb.append(niceSndDt); + return sb.toString(); + } + } + + + + private static String nvl(String src){ + return StringUtils.defaultIfEmpty(src, StringUtils.EMPTY); + } + + public static void main(String[] args) { + NiceRequest nr = new NiceRequest(); + nr.setTrCode("aa"); + // // 공통부 + // + // // 개별요청부 + // nr.setQueryReason(StringUtils.EMPTY); + // nr.setQueryReqCnt(46); + // nr.setSmsSndReqCode("1"); + // nr.setSndMessage("~~~"); + // nr.setSndPhoneNo("010"); + // nr.setContactSearchCode("1"); + + + // 공통부 + NiceCommon nc = new NiceCommon(); + // nc.setRsltCode(StringUtils.EMPTY); + // nc.setOrgId("orgId"); + // nc.setOrgMngNo("orgMngNo"); + + QueryRequest qr = new QueryRequest(); + ButtonRequest br = new ButtonRequest(); + + + nr.setNiceCommon(nc); + nr.getQueryRequests().add(qr); + nr.getButtonRequests().add(br); + // nc.setNiceMngNo(StringUtils.EMPTY); + // nc.setNiceSndDt(StringUtils.EMPTY); + + + + + String fullText = nr.getAsString(); + System.out.println(String.format("[%s] %d", fullText, fullText.length())); + + NiceCommon nc2 = NiceCommon.builder() + .build(); + QueryRequest qr2 = QueryRequest.builder() + .idDiv("1") + .jumin("1234567890123") + .build(); + ButtonRequest br2 = ButtonRequest.builder() + .btnType("12") + .build(); + + NiceRequest nr2 = NiceRequest.builder() + .trCode("trCode") + .niceCommon(nc2) + .queryRequests(Collections.singletonList(qr2)) + .buttonRequests(Collections.singletonList(br2)) + .build(); + + String fullText2 = nr2.getAsString(); + System.out.println(String.format("[%s] %d", fullText2, fullText2.length())); + + ResResult resResult = new ResResult(); + ResResult resResult2 = ResResult.builder().build(); + + NiceResponse res = new NiceResponse(); + res.setNiceCommon(nc); + res.resResults.add(resResult); + NiceResponse res2 = NiceResponse.builder() + .niceCommon(nc2) + .resResults(Collections.singletonList(resResult2)) + .build(); + + String fullText3 = res.getAsString(); + String fullText4 = res2.getAsString(); + System.out.println(String.format("[%s] %d", fullText3, fullText3.length())); + System.out.println(String.format("[%s] %d", fullText4, fullText4.length())); + } +}