Commit 9742a1e8 authored by 王向伟's avatar 王向伟

修改错误返回的msg

parent 15593e6c
......@@ -482,7 +482,7 @@ public class UserServiceImpl implements IUserService {
JsonResult<LoanOrderMapping> orderMapping = kaService.findOrderMapping(orderQueryParam);
if (!orderMapping.isSuccess() || Objects.isNull(orderMapping.getData())) {
log.error("{} 查询orderMapping失败 param={} result={}", logPre, orderQueryParam, orderMapping);
return JsonResult.buildErrorStateResult(orderMapping.getMsg(), null);
return JsonResult.buildErrorStateResult("查询orderMapping失败", null);
}
Long qgUserId = orderMapping.getData().getQgUserId();
UserSysResult<XUserDetail> userDetailByUserId = userSdk.getService().findUserDetailByUserId(qgUserId);
......
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