Commit de5c5669 authored by hezhen's avatar hezhen

123

parent b5b7f9ec
......@@ -118,6 +118,7 @@ public class AppUserController extends CommonBaseController {
if (userVo == null) {
throw new Exception();
}
Integer id= userVo.getId();
BeanUtils.copyProperties(userDTO,userVo);
if(userVo.getIsMember()!=null&&userVo.getIsMember()>0){
//获取用户会员信息
......@@ -126,6 +127,7 @@ public class AppUserController extends CommonBaseController {
BeanUtils.copyProperties(userDTO,memberVo);
}
}
userDTO.setId(id);
return ObjectRestResponse.succ(userDTO);
}
......
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