用户信息修改后端接口
This commit is contained in:
parent
70a51c9d92
commit
c70fdd64d4
@ -200,6 +200,9 @@ public class AppUserServiceImpl extends ServiceImpl<AppUserDao, AppUserEntity> i
|
||||
if (!ObjectUtil.isEmpty(appUserUpdateForm.getAvatar())) {
|
||||
user.setAvatar(appUserUpdateForm.getAvatar());
|
||||
}
|
||||
if(!ObjectUtil.isEmpty(appUserUpdateForm.getGender())){
|
||||
user.setGender(appUserUpdateForm.getGender());
|
||||
}
|
||||
baseMapper.updateById(user);
|
||||
redisUtils.delete("userId:" + user.getUid());
|
||||
}
|
||||
|
@ -30,4 +30,7 @@ public class AppUserUpdateForm {
|
||||
@ApiModelProperty(value = "头像")
|
||||
private String avatar;
|
||||
|
||||
@ApiModelProperty(value = "性别")
|
||||
private Integer gender;
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user