Commit 182c5496 authored by 贷前—徐菲's avatar 贷前—徐菲

Merge branch 'master' into 20180105-user-auth

parents e2d211e7 55158c49
...@@ -118,8 +118,8 @@ public class InnerController implements IBaseController { ...@@ -118,8 +118,8 @@ public class InnerController implements IBaseController {
return JsonResult.buildSuccessResult("", userRet); return JsonResult.buildSuccessResult("", userRet);
} }
@RequestMapping("/userInfo/search/uuid")
@LogHttpCaller @LogHttpCaller
@RequestMapping("/userInfo/search/uuid")
public JsonResult findUserInfoByUuid(@RequestParam(value = "uuid") String uuid) { public JsonResult findUserInfoByUuid(@RequestParam(value = "uuid") String uuid) {
LOGGER.info("需要查询的用户uuidid, uuid:" + uuid); LOGGER.info("需要查询的用户uuidid, uuid:" + uuid);
...@@ -137,8 +137,9 @@ public class InnerController implements IBaseController { ...@@ -137,8 +137,9 @@ public class InnerController implements IBaseController {
} }
return JsonResult.buildSuccessResult("", null); return JsonResult.buildSuccessResult("", null);
} }
@RequestMapping("/userInfo/search/phone")
@LogHttpCaller @LogHttpCaller
@RequestMapping("/userInfo/search/phone")
public JsonResult findUserInfoByPhone(@RequestParam(value = "phone") String phone) { public JsonResult findUserInfoByPhone(@RequestParam(value = "phone") String phone) {
LOGGER.info("需要查询的用户phone, phone:" + phone); LOGGER.info("需要查询的用户phone, phone:" + phone);
......
...@@ -182,7 +182,8 @@ public class UserDetailServiceImpl implements IUserDetailService { ...@@ -182,7 +182,8 @@ public class UserDetailServiceImpl implements IUserDetailService {
return userDetailRepository.findAll(spec, pageRequest); return userDetailRepository.findAll(spec, pageRequest);
} }
@Override public void fixedIdNoAndGender() { @Override
public void fixedIdNoAndGender() {
List<UserDetail> details=userDetailRepository.selectUserDetailsBy(); List<UserDetail> details=userDetailRepository.selectUserDetailsBy();
if(!CollectionUtils.isEmpty(details)){ if(!CollectionUtils.isEmpty(details)){
for (UserDetail detail:details){ for (UserDetail detail:details){
......
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