fix: ShinhanCommonHeaderDto 누락된 envrTypeCd 필드 추가 및 불필요한 대외망(FixedLength) 필드 정리

This commit is contained in:
jade
2026-07-16 15:25:11 +09:00
parent dddb36daa8
commit 931f182446
2 changed files with 1 additions and 8 deletions

View File

@@ -32,8 +32,6 @@ public class ShinhanIntegrationProperties {
private ServerInfo eai = new ServerInfo(); private ServerInfo eai = new ServerInfo();
private ServerInfo internalMci = new ServerInfo(); private ServerInfo internalMci = new ServerInfo();
private ServerInfo externalMci = new ServerInfo();
private ServerInfo bancaMci = new ServerInfo();
@Getter @Getter
@Setter @Setter

View File

@@ -25,6 +25,7 @@ import lombok.NoArgsConstructor;
@AllArgsConstructor @AllArgsConstructor
public class ShinhanCommonHeaderDto { public class ShinhanCommonHeaderDto {
private String envrTypeCd; // 환경유형코드 (D, T, R)
private String glbId; // 전사공통키 (37 Byte) private String glbId; // 전사공통키 (37 Byte)
private String pgrsSriaNo; // 진행일련번호 private String pgrsSriaNo; // 진행일련번호
private String trgmVrsnInfoValu; // 전문버전정보값 private String trgmVrsnInfoValu; // 전문버전정보값
@@ -36,10 +37,4 @@ public class ShinhanCommonHeaderDto {
private String inqrTraTypeCd; // 조회거래유형코드 private String inqrTraTypeCd; // 조회거래유형코드
private String reqTgrmTnsmDtptDt; // 요청전문전송일시 private String reqTgrmTnsmDtptDt; // 요청전문전송일시
private String itrIfId; // 인터페이스ID private String itrIfId; // 인터페이스ID
// 대외 연계 정보 (선택)
private String frbuCd; // 대외기관코드
private String cmouDutjCd; // 대외업무코드
private String cmouCssfCd; // 대외종별코드
private String cmouTraCd; // 대외거래코드
} }