Commit 82ea34b7 authored by hezhen's avatar hezhen

123

parent a86c11f4
...@@ -564,12 +564,16 @@ public class AppPermissionService { ...@@ -564,12 +564,16 @@ public class AppPermissionService {
user.setIdNumber(idNumber); user.setIdNumber(idNumber);
user.setCertificationStatus(1); user.setCertificationStatus(1);
appUserLoginBiz.updateSelectiveById(user); appUserLoginBiz.updateSelectiveById(user);
if(StringUtils.isBlank(userVo.getRealname())){
Integer id=userVo.getId();
userVo=new AppUserVo(); userVo=new AppUserVo();
userVo.setId(userVo.getId()); userVo.setId(id);
userVo.setUserid(userid); userVo.setUserid(userid);
userVo.setRealname(name); userVo.setRealname(name);
appUserDetailBiz.updUuserInfoById(userVo); appUserDetailBiz.updUuserInfoById(userVo);
} }
}
return ObjectRestResponse.succ(); return ObjectRestResponse.succ();
} catch (Exception e) { } catch (Exception e) {
log.error("upAuthentication->error:{}", e.getMessage(), e); log.error("upAuthentication->error:{}", e.getMessage(), e);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment