|
|
@@ -141,9 +141,16 @@ public class UserVo {
|
|
|
@Excel(name = "政治面貌")
|
|
|
@ApiModelProperty("政治面貌")
|
|
|
private String politic;
|
|
|
+ /** 邮箱 */
|
|
|
+ @Excel(name = "邮箱")
|
|
|
+ @ApiModelProperty("邮箱")
|
|
|
+ private String email;
|
|
|
|
|
|
public void setNull(){
|
|
|
this.setOpenId(null);
|
|
|
- this.setTelphone(TelPhoneUtils.hideTelPhone(this.getTelphone()));
|
|
|
+ if(this.getTelphone()!=null){
|
|
|
+ this.setTelphone(TelPhoneUtils.hideTelPhone(this.getTelphone()));
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
}
|