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
182c5496
Commit
182c5496
authored
Jan 16, 2018
by
贷前—徐菲
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into 20180105-user-auth
parents
e2d211e7
55158c49
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
InnerController.java
...tgroup/xyqb/controller/external/user/InnerController.java
+3
-2
UserDetailServiceImpl.java
...ntgroup/xyqb/service/user/impl/UserDetailServiceImpl.java
+2
-1
No files found.
src/main/java/cn/quantgroup/xyqb/controller/external/user/InnerController.java
View file @
182c5496
...
...
@@ -118,8 +118,8 @@ public class InnerController implements IBaseController {
return
JsonResult
.
buildSuccessResult
(
""
,
userRet
);
}
@RequestMapping
(
"/userInfo/search/uuid"
)
@LogHttpCaller
@RequestMapping
(
"/userInfo/search/uuid"
)
public
JsonResult
findUserInfoByUuid
(
@RequestParam
(
value
=
"uuid"
)
String
uuid
)
{
LOGGER
.
info
(
"需要查询的用户uuidid, uuid:"
+
uuid
);
...
...
@@ -137,8 +137,9 @@ public class InnerController implements IBaseController {
}
return
JsonResult
.
buildSuccessResult
(
""
,
null
);
}
@RequestMapping
(
"/userInfo/search/phone"
)
@LogHttpCaller
@RequestMapping
(
"/userInfo/search/phone"
)
public
JsonResult
findUserInfoByPhone
(
@RequestParam
(
value
=
"phone"
)
String
phone
)
{
LOGGER
.
info
(
"需要查询的用户phone, phone:"
+
phone
);
...
...
src/main/java/cn/quantgroup/xyqb/service/user/impl/UserDetailServiceImpl.java
View file @
182c5496
...
...
@@ -182,7 +182,8 @@ public class UserDetailServiceImpl implements IUserDetailService {
return
userDetailRepository
.
findAll
(
spec
,
pageRequest
);
}
@Override
public
void
fixedIdNoAndGender
()
{
@Override
public
void
fixedIdNoAndGender
()
{
List
<
UserDetail
>
details
=
userDetailRepository
.
selectUserDetailsBy
();
if
(!
CollectionUtils
.
isEmpty
(
details
)){
for
(
UserDetail
detail:
details
){
...
...
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