TAccountNo 제거

master
mjkhan21 2 weeks ago
parent e14225c1b4
commit 57c919e529

@ -49,6 +49,8 @@ public class Ye22NoticeInfoDTO extends SntrisWSDTO {
private String SAccountNo;
/** 계좌번호(우리) */
private String WAccountNo;
/** 계좌번호(토스뱅크) */
// private String TAccountNo;
/** 압류일자(최종) */
private String apYmd;
/** 과태료대장 키 */
@ -174,6 +176,7 @@ public class Ye22NoticeInfoDTO extends SntrisWSDTO {
String QAccountNo,
String SAccountNo,
String WAccountNo,
String TAccountNo,
String apYmd,
long buAk,
String buStatusCd,
@ -246,6 +249,7 @@ public class Ye22NoticeInfoDTO extends SntrisWSDTO {
this.QAccountNo = QAccountNo;
this.SAccountNo = SAccountNo;
this.WAccountNo = WAccountNo;
// this.TAccountNo = TAccountNo;
this.apYmd = apYmd;
this.buAk = buAk;
this.buStatusCd = buStatusCd;
@ -462,6 +466,19 @@ public class Ye22NoticeInfoDTO 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
* @return apYmd
*/
@ -1245,6 +1262,7 @@ public class Ye22NoticeInfoDTO extends SntrisWSDTO {
getters.put("수협", this::getFAccountNo);
getters.put("카카오", this::getOAccountNo);
getters.put("K뱅크", this::getQAccountNo);
// getters.put("토스뱅크", this::getTAccountNo);
return getters;
}
/** .
@ -1322,6 +1340,7 @@ public class Ye22NoticeInfoDTO extends SntrisWSDTO {
equals(this.QAccountNo, other.getQAccountNo()) &&
equals(this.SAccountNo, other.getSAccountNo()) &&
equals(this.WAccountNo, other.getWAccountNo()) &&
// equals(this.TAccountNo, other.getTAccountNo()) &&
equals(this.apYmd, other.getApYmd()) &&
this.buAk == other.getBuAk() &&
equals(this.buStatusCd, other.getBuStatusCd()) &&
@ -1405,6 +1424,7 @@ public class Ye22NoticeInfoDTO extends SntrisWSDTO {
getQAccountNo(),
getSAccountNo(),
getWAccountNo(),
// getTAccountNo(),
getApYmd(),
Long.valueOf(getBuAk()),
getBuStatusCd(),
@ -1487,6 +1507,7 @@ public class Ye22NoticeInfoDTO 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 = "apYmd", desc.qname("", name), "string", true),
desc.field(name = "buAk", desc.qname("", name), "long", false),
desc.field(name = "buStatusCd", desc.qname("", name), "string", true),

Loading…
Cancel
Save