|
|
@@ -82,6 +82,11 @@ public class Counsel extends TscBaseDomain {
|
|
|
return this.custNm;
|
|
|
}
|
|
|
|
|
|
+ public String getCellPhnno() {
|
|
|
+ this.cellPhnno = CryptoUtils.decryptAES(this.cellPhnno);
|
|
|
+ return this.cellPhnno;
|
|
|
+ }
|
|
|
+
|
|
|
public String getEmail() {
|
|
|
this.email = CryptoUtils.decryptAES(this.email);
|
|
|
return this.email;
|
|
|
@@ -96,7 +101,7 @@ public class Counsel extends TscBaseDomain {
|
|
|
}
|
|
|
|
|
|
public String getMaskingCellPhnno() {
|
|
|
- return TsaSession.getInfo().getMaskingYn().equals("Y") ? MaskingUtils.phoneNo(cellPhnno) : cellPhnno;
|
|
|
+ return TsaSession.getInfo().getMaskingYn().equals("Y") ? MaskingUtils.phoneNo(getCellPhnno()) : getCellPhnno();
|
|
|
}
|
|
|
|
|
|
public String getMaskingEmail() {
|