|
@@ -426,12 +426,12 @@ public class Order extends TscBaseDomain {
|
|
|
private String bankNm;
|
|
private String bankNm;
|
|
|
|
|
|
|
|
public String getAccountNo() {
|
|
public String getAccountNo() {
|
|
|
- this.accountNo = CryptoUtils.decryptAES(this.accountNo);
|
|
|
|
|
|
|
+ this.accountNo = CryptoUtils.decryptYes24AES(this.accountNo);
|
|
|
return this.accountNo;
|
|
return this.accountNo;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
public void encryptData () {
|
|
public void encryptData () {
|
|
|
- this.encodedAccountNo = CryptoUtils.encryptAES(this.accountNo);
|
|
|
|
|
|
|
+ this.encodedAccountNo = CryptoUtils.encryptYes24AES(this.accountNo);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
private int realDelvAmt;
|
|
private int realDelvAmt;
|
|
@@ -606,27 +606,27 @@ public class Order extends TscBaseDomain {
|
|
|
|
|
|
|
|
// 암호화 대상 복호화 처리
|
|
// 암호화 대상 복호화 처리
|
|
|
public String getCustNm() {
|
|
public String getCustNm() {
|
|
|
- this.custNm = CryptoUtils.decryptAES(this.custNm);
|
|
|
|
|
|
|
+ this.custNm = CryptoUtils.decryptYes24AES(this.custNm);
|
|
|
return this.custNm;
|
|
return this.custNm;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
public String getEmail() {
|
|
public String getEmail() {
|
|
|
- this.email = CryptoUtils.decryptAES(this.email);
|
|
|
|
|
|
|
+ this.email = CryptoUtils.decryptYes24AES(this.email);
|
|
|
return this.email;
|
|
return this.email;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
public String getCellPhnno() {
|
|
public String getCellPhnno() {
|
|
|
- this.cellPhnno = CryptoUtils.decryptAES(this.cellPhnno);
|
|
|
|
|
|
|
+ this.cellPhnno = CryptoUtils.decryptYes24AES(this.cellPhnno);
|
|
|
return this.cellPhnno;
|
|
return this.cellPhnno;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
public String getRecipBaseAddr() {
|
|
public String getRecipBaseAddr() {
|
|
|
- this.recipBaseAddr = CryptoUtils.decryptAES(this.recipBaseAddr);
|
|
|
|
|
|
|
+ this.recipBaseAddr = CryptoUtils.decryptYes24AES(this.recipBaseAddr);
|
|
|
return this.recipBaseAddr;
|
|
return this.recipBaseAddr;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
public String getRecipDtlAddr() {
|
|
public String getRecipDtlAddr() {
|
|
|
- this.recipDtlAddr = CryptoUtils.decryptAES(this.recipDtlAddr);
|
|
|
|
|
|
|
+ this.recipDtlAddr = CryptoUtils.decryptYes24AES(this.recipDtlAddr);
|
|
|
return this.recipDtlAddr;
|
|
return this.recipDtlAddr;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -685,12 +685,12 @@ public class Order extends TscBaseDomain {
|
|
|
private String birthGen; // 보증보험(생년월일 + 성별)
|
|
private String birthGen; // 보증보험(생년월일 + 성별)
|
|
|
|
|
|
|
|
public String getBirthYmd() {
|
|
public String getBirthYmd() {
|
|
|
- this.birthYmd = CryptoUtils.decryptAES(this.birthYmd);
|
|
|
|
|
|
|
+ this.birthYmd = CryptoUtils.decryptYes24AES(this.birthYmd);
|
|
|
return this.birthYmd;
|
|
return this.birthYmd;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
public String getSexGb() {
|
|
public String getSexGb() {
|
|
|
- this.sexGb = CryptoUtils.decryptAES(this.sexGb);
|
|
|
|
|
|
|
+ this.sexGb = CryptoUtils.decryptYes24AES(this.sexGb);
|
|
|
return this.sexGb;
|
|
return this.sexGb;
|
|
|
}
|
|
}
|
|
|
|
|
|