作者 mxy

修改个人信心

... ... @@ -69,7 +69,7 @@ public class CPersonalInformation implements Serializable {
/**
* 家庭住址
*/
private Long home;
private String home;
/**
* 身份证号
... ...
... ... @@ -55,7 +55,7 @@ public class CPersonalInformationBo extends BaseEntity {
* 家庭住址
*/
@ApiModelProperty("家庭住址")
private Long home;
private String home;
/**
* 身份证号
... ...
... ... @@ -61,7 +61,7 @@ public class CPersonalInformationVo {
*/
@Excel(name = "家庭住址")
@ApiModelProperty("家庭住址")
private Long home;
private String home;
/**
* 身份证号
... ...
... ... @@ -290,6 +290,17 @@ public class MineServiceImpl implements MineService {
if (bo.getPhonenumber() !=null){
personalInfo.setPhonenumber(bo.getPhonenumber());
}
if (!bo.getHome().isEmpty()){
personalInfo.setHome(bo.getHome());
}
if (!bo.getResume().isEmpty()){
personalInfo.setResume(bo.getResume());
}
personalInfo.setUpdateTime(LocalDateTime.now());
//判断 等于null 没有个人信息
... ...