REQ-3046: 设计分组详情的链接名称

This commit is contained in:
yanglin 2024-10-22 14:44:41 +08:00
parent 5db74c0ed9
commit 4cf4ffb9fd
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);