Commit 36a6ec04 by 魏文甫

Merge branch 'wei_master' into '105'

update

See merge request !34
2 parents 46b91af4 867b12e9
...@@ -35,7 +35,9 @@ public class UserController extends BaseController { ...@@ -35,7 +35,9 @@ public class UserController extends BaseController {
@RequestMapping(value = "/userData", method = {RequestMethod.POST, RequestMethod.GET}, produces = "application/json") @RequestMapping(value = "/userData", method = {RequestMethod.POST, RequestMethod.GET}, produces = "application/json")
public Map userData(HttpServletRequest request) { public Map userData(HttpServletRequest request) {
TKzyUser loginUser = getLoginUser(request); TKzyUser loginUser = getLoginUser(request);
if (loginUser != null && loginUser.getId() != null) {
loginUser = tKzyUserMapper.selectByPrimaryKey(loginUser.getId());
}
return returnSuccess(loginUser); return returnSuccess(loginUser);
} }
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!