|
|
@@ -4,6 +4,7 @@ import java.util.Collection;
|
|
|
import java.util.List;
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
+import com.style24.core.support.util.CryptoUtils;
|
|
|
import com.style24.persistence.TscBaseDomain;
|
|
|
import com.style24.persistence.TscPageRequest;
|
|
|
|
|
|
@@ -519,4 +520,32 @@ public class Order extends TscBaseDomain {
|
|
|
private int cancelCount;
|
|
|
private int exchangeCount;
|
|
|
private int returnCount;
|
|
|
+
|
|
|
+ // 암호화 대상 복호화 처리
|
|
|
+ public String getCustNm() {
|
|
|
+ this.custNm = CryptoUtils.decryptAES(this.custNm);
|
|
|
+ return this.custNm;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getEmail() {
|
|
|
+ this.email = CryptoUtils.decryptAES(this.email);
|
|
|
+ return this.email;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCellPhnno() {
|
|
|
+ this.cellPhnno = CryptoUtils.decryptAES(this.cellPhnno);
|
|
|
+ return this.cellPhnno;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRecipBaseAddr() {
|
|
|
+ this.recipBaseAddr = CryptoUtils.decryptAES(this.recipBaseAddr);
|
|
|
+ return this.recipBaseAddr;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRecipDtlAddr() {
|
|
|
+ this.recipDtlAddr = CryptoUtils.decryptAES(this.recipDtlAddr);
|
|
|
+ return this.recipDtlAddr;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|