Merge branch 'feature/REQ-3045' into dev

This commit is contained in:
yanglin 2024-10-22 14:44:46 +08:00
commit e6838d75f1
3 changed files with 0 additions and 22 deletions

View File

@ -33,10 +33,6 @@ public class PersonInfo {
*/
private String mobilePhoneCiphertext;
public void resetCiphertextFields() {
this.mobilePhoneCiphertext = mobilePhone;
}
public String maskPhone() {
return MiscUtils2.maskPhone(mobilePhone);
}

View File

@ -1,6 +1,5 @@
package cn.axzo.msg.center.service.pending.response.v3.model;
import cn.axzo.msg.center.service.util.MiscUtils2;
import cn.axzo.trade.datasecurity.sd.extension.annotation.SDCellPhoneField;
import lombok.Getter;
import lombok.Setter;
@ -23,11 +22,4 @@ public class PhoneInfo {
*/
private String mobilePhoneCiphertext;
public void resetCiphertextFields() {
this.mobilePhoneCiphertext = mobilePhone;
}
public String maskPhone() {
return MiscUtils2.maskPhone(mobilePhone);
}
}

View File

@ -1,6 +1,5 @@
package cn.axzo.msg.center.service.pending.response.v3.model;
import cn.axzo.msg.center.service.util.MiscUtils2;
import cn.axzo.trade.datasecurity.sd.extension.annotation.SDCellPhoneField;
import cn.axzo.trade.datasecurity.sd.extension.annotation.SDIdCardField;
import com.alibaba.fastjson.JSON;
@ -63,15 +62,6 @@ public class WorkerInfo {
*/
private String professionNames;
public void resetCiphertextFields() {
phoneCiphertext = phone;
idNumberCiphertext = idNumber;
}
public String maskPhone() {
return MiscUtils2.maskPhone(phone);
}
@Override
public String toString() {
return JSON.toJSONString(this);