Commit 84e55f9f authored by xiaozhe.chen's avatar xiaozhe.chen

修改用户查询

parent 6fe052f0
......@@ -217,6 +217,7 @@ public class UserServiceImpl implements IUserService {
//通过业务系统获得
log.info("{} 通过phoneNo查询 idNo={}", LOG_PRE, userQueryParam.getIdNo());
JsonResult userDetailResult = findUserDetailByIdNo(userQueryParam.getIdNo());
/*
if (StringUtils.isNotEmpty(userQueryParam.getPhoneNo()) && userDetailResult.isSuccess() && userDetailResult.getData() != null) {
UserBasicInfo userBasicInfo = (UserBasicInfo) userDetailResult.getData();
String phoneNo = userBasicInfo.getPhoneNo();
......@@ -225,7 +226,7 @@ public class UserServiceImpl implements IUserService {
return JsonResult.buildErrorStateResult("无有效查询参数", null);
}
}
*/
return userDetailResult;
}
......
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