Commit 82ea34b7 authored by hezhen's avatar hezhen

123

parent a86c11f4
......@@ -564,11 +564,15 @@ public class AppPermissionService {
user.setIdNumber(idNumber);
user.setCertificationStatus(1);
appUserLoginBiz.updateSelectiveById(user);
userVo=new AppUserVo();
userVo.setId(userVo.getId());
userVo.setUserid(userid);
userVo.setRealname(name);
appUserDetailBiz.updUuserInfoById(userVo);
if(StringUtils.isBlank(userVo.getRealname())){
Integer id=userVo.getId();
userVo=new AppUserVo();
userVo.setId(id);
userVo.setUserid(userid);
userVo.setRealname(name);
appUserDetailBiz.updUuserInfoById(userVo);
}
}
return ObjectRestResponse.succ();
} catch (Exception 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