|
|
|
|
@ -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),
|
|
|
|
|
|