Commit d7a38a41 authored by Java—KA—李 青's avatar Java—KA—李 青

用户完整信息增加是否有效

parent 4ca5722b
...@@ -56,7 +56,7 @@ public class ExceptionHandlingController implements IBaseController { ...@@ -56,7 +56,7 @@ public class ExceptionHandlingController implements IBaseController {
HttpServletRequest request = getRequest(); HttpServletRequest request = getRequest();
String uri = request.getRequestURI(); String uri = request.getRequestURI();
String registerFrom = request.getParameter("registerFrom"); String registerFrom = request.getParameter("registerFrom");
LOGGER.error("[exception][global_exception]接口异常 URI:{}, registerFrom:{}", uri, registerFrom, e); LOGGER.error("[exception][global_exception]接口异常 URI:{}, registerFrom:{},error={}", uri, registerFrom, e);
return EXCEPTION_RESULT; return EXCEPTION_RESULT;
} }
} }
...@@ -30,6 +30,8 @@ public class UserFullInfo implements Serializable { ...@@ -30,6 +30,8 @@ public class UserFullInfo implements Serializable {
private String uuid; private String uuid;
private Boolean enable;
public UserFullInfo() { public UserFullInfo() {
} }
...@@ -40,6 +42,7 @@ public class UserFullInfo implements Serializable { ...@@ -40,6 +42,7 @@ public class UserFullInfo implements Serializable {
this.registerFrom = user.getRegisteredFrom(); this.registerFrom = user.getRegisteredFrom();
this.password = user.getPassword(); this.password = user.getPassword();
this.uuid = user.getUuid(); this.uuid = user.getUuid();
this.enable = user.getEnable();
if (userDetail != null) { if (userDetail != null) {
this.name = userDetail.getName(); this.name = userDetail.getName();
this.idNo = userDetail.getIdNo(); this.idNo = userDetail.getIdNo();
......
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