From 0fa750d1c754975b133f6ebc4fd62b412d380525 Mon Sep 17 00:00:00 2001 From: mjkhan21 Date: Tue, 27 May 2025 18:06:07 +0900 Subject: [PATCH] =?UTF-8?q?=ED=86=A0=EC=8A=A4=EB=B1=85=ED=81=AC=20?= =?UTF-8?q?=EA=B3=84=EC=A2=8C=EB=B2=88=ED=98=B8=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../prenotice/Bu18WebReturnInfoDTO.java | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/src/main/java/cokr/xit/interfaces/sntris/prenotice/Bu18WebReturnInfoDTO.java b/src/main/java/cokr/xit/interfaces/sntris/prenotice/Bu18WebReturnInfoDTO.java index cef1471..d919eab 100644 --- a/src/main/java/cokr/xit/interfaces/sntris/prenotice/Bu18WebReturnInfoDTO.java +++ b/src/main/java/cokr/xit/interfaces/sntris/prenotice/Bu18WebReturnInfoDTO.java @@ -40,6 +40,8 @@ public class Bu18WebReturnInfoDTO extends SntrisWSDTO { private String SAccountNo; /** 계좌번호(우리) */ private String WAccountNo; + /** 계좌번호(토스뱅크) */ + private String TAccountNo; /** 세외수입부과 키 */ private String buAfk; /** 전자납부번호 */ @@ -68,6 +70,7 @@ public class Bu18WebReturnInfoDTO extends SntrisWSDTO { String QAccountNo, String SAccountNo, String WAccountNo, + String TAccountNo, String buAfk, String enapbuNo, String etcColmn1, @@ -90,6 +93,7 @@ public class Bu18WebReturnInfoDTO extends SntrisWSDTO { this.QAccountNo = QAccountNo; this.SAccountNo = SAccountNo; this.WAccountNo = WAccountNo; + this.TAccountNo = TAccountNo; this.buAfk = buAfk; this.enapbuNo = enapbuNo; this.etcColmn1 = etcColmn1; @@ -256,6 +260,20 @@ public class Bu18WebReturnInfoDTO extends SntrisWSDTO { this.WAccountNo = WAccountNo; } + /**Gets the TAccountNo value for this Bu18WebReturnInfoDTO. + * @return TAccountNo + */ + public String getTAccountNo() { + return TAccountNo; + } + + /**Sets the TAccountNo value for this Bu18WebReturnInfoDTO. + * @param TAccountNo + */ + public void setTAccountNo(String TAccountNo) { + this.TAccountNo = TAccountNo; + } + /**Gets the buAfk value for this Bu18WebReturnInfoDTO. * @return buAfk */ @@ -409,6 +427,7 @@ public class Bu18WebReturnInfoDTO extends SntrisWSDTO { getters.put("수협", this::getFAccountNo); getters.put("카카오", this::getOAccountNo); getters.put("K뱅크", this::getQAccountNo); + getters.put("토스뱅크", this::getTAccountNo); return getters; } @@ -439,6 +458,7 @@ public class Bu18WebReturnInfoDTO extends SntrisWSDTO { equals(this.QAccountNo, other.getQAccountNo()) && equals(this.SAccountNo, other.getSAccountNo()) && equals(this.WAccountNo, other.getWAccountNo()) && + equals(this.TAccountNo, other.getTAccountNo()) && equals(this.buAfk, other.getBuAfk()) && equals(this.enapbuNo, other.getEnapbuNo()) && equals(this.etcColmn1, other.getEtcColmn1()) && @@ -471,6 +491,7 @@ public class Bu18WebReturnInfoDTO extends SntrisWSDTO { getQAccountNo(), getSAccountNo(), getWAccountNo(), + getTAccountNo(), getBuAfk(), getEnapbuNo(), getEtcColmn1(), @@ -503,6 +524,7 @@ public class Bu18WebReturnInfoDTO extends SntrisWSDTO { desc.field(name = "QAccountNo", desc.qname("", name), "string", true), desc.field(name = "SAccountNo", desc.qname("", name), "string", true), desc.field(name = "WAccountNo", desc.qname("", name), "string", true), + desc.field(name = "TAccountNo", desc.qname("", name), "string", true), desc.field(name = "buAfk", desc.qname("", name), "string", true), desc.field(name = "enapbuNo", desc.qname("", name), "string", true), desc.field(name = "etcColmn1", desc.qname("", name), "string", true),