1.添加手机号和身份证的安全性和保密性
2.添加对应的定时任务
This commit is contained in:
@@ -30,4 +30,14 @@ public class CommunityUser extends BaseEntity {
|
||||
*/
|
||||
private String phoneNumber;
|
||||
|
||||
/**
|
||||
* 手机号完整性
|
||||
*/
|
||||
private String phoneNumberCipher;
|
||||
|
||||
/**
|
||||
* 手机号机密性
|
||||
*/
|
||||
private String phoneNumberEncrypt;
|
||||
|
||||
}
|
||||
|
||||
@@ -71,4 +71,16 @@ public class EmployeeConfirm extends BaseEntity {
|
||||
*/
|
||||
@TableField(exist = false)
|
||||
private Long applyId;
|
||||
|
||||
@ApiModelProperty("联系方式完整性")
|
||||
private String contactPersonPhoneCipher;
|
||||
|
||||
@ApiModelProperty("身份证完整性")
|
||||
private String idCardCipher;
|
||||
|
||||
@ApiModelProperty("联系方式机密性")
|
||||
private String contactPersonPhoneEncrypt;
|
||||
|
||||
@ApiModelProperty("身份证机密性")
|
||||
private String idCardEncrypt;
|
||||
}
|
||||
|
||||
@@ -50,4 +50,10 @@ public class JobContact extends BaseEntity {
|
||||
*/
|
||||
@ApiModelProperty("职务")
|
||||
private String position;
|
||||
|
||||
@ApiModelProperty("联系人电话完整性")
|
||||
private String contactPersonPhoneCipher;
|
||||
|
||||
@ApiModelProperty("联系人电话机密性")
|
||||
private String contactPersonPhoneEncrypt;
|
||||
}
|
||||
|
||||
@@ -17,4 +17,6 @@ public class WechatGroupVo {
|
||||
private String phoneNumber;
|
||||
private String wechatName;
|
||||
private Long communityId;
|
||||
private String phoneNumberCipher;
|
||||
private String phoneNumberEncrypt;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user