Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
xyqb-user2
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
head_group
xyqb-user2
Commits
d7a38a41
Commit
d7a38a41
authored
Nov 17, 2017
by
Java—KA—李 青
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
用户完整信息增加是否有效
parent
4ca5722b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
ExceptionHandlingController.java
...antgroup/xyqb/controller/ExceptionHandlingController.java
+1
-1
UserFullInfo.java
src/main/java/cn/quantgroup/xyqb/model/UserFullInfo.java
+3
-0
No files found.
src/main/java/cn/quantgroup/xyqb/controller/ExceptionHandlingController.java
View file @
d7a38a41
...
...
@@ -56,7 +56,7 @@ public class ExceptionHandlingController implements IBaseController {
HttpServletRequest
request
=
getRequest
();
String
uri
=
request
.
getRequestURI
();
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
;
}
}
src/main/java/cn/quantgroup/xyqb/model/UserFullInfo.java
View file @
d7a38a41
...
...
@@ -30,6 +30,8 @@ public class UserFullInfo implements Serializable {
private
String
uuid
;
private
Boolean
enable
;
public
UserFullInfo
()
{
}
...
...
@@ -40,6 +42,7 @@ public class UserFullInfo implements Serializable {
this
.
registerFrom
=
user
.
getRegisteredFrom
();
this
.
password
=
user
.
getPassword
();
this
.
uuid
=
user
.
getUuid
();
this
.
enable
=
user
.
getEnable
();
if
(
userDetail
!=
null
)
{
this
.
name
=
userDetail
.
getName
();
this
.
idNo
=
userDetail
.
getIdNo
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment