TAccountNo 제거

master
mjkhan21 2 weeks ago
parent e14225c1b4
commit 57c919e529

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

Loading…
Cancel
Save