Commit 44398559 authored by liwenbin's avatar liwenbin

fix

parent 4f548da5
...@@ -77,7 +77,7 @@ public class NiwodaiAssetServiceImpl implements INiwodaiAssetService { ...@@ -77,7 +77,7 @@ public class NiwodaiAssetServiceImpl implements INiwodaiAssetService {
UserSysResult<UserInfo> userInfoByUuid = userSdkService.findUserInfoByUuid(uuid); UserSysResult<UserInfo> userInfoByUuid = userSdkService.findUserInfoByUuid(uuid);
if (!userInfoByUuid.isSuccess()){ if (!userInfoByUuid.isSuccess()){
log.error("你我贷准入检查获取用户中心信息失败 uuid : {}",uuid); log.error("你我贷准入检查获取用户中心信息失败 uuid : {}",uuid);
throw new QGException(QGExceptionType.GET_USER_INFO_ERROR); throw new QGException(QGExceptionType.GET_USER_INFO_ERROR, uuid);
} }
// 因为渠道限制不一样,死条件先在代码里写死 // 因为渠道限制不一样,死条件先在代码里写死
String phoneNo = userInfoByUuid.getData().getPhoneNo(); String phoneNo = userInfoByUuid.getData().getPhoneNo();
...@@ -124,7 +124,7 @@ public class NiwodaiAssetServiceImpl implements INiwodaiAssetService { ...@@ -124,7 +124,7 @@ public class NiwodaiAssetServiceImpl implements INiwodaiAssetService {
UserSysResult<UserInfo> userInfoByUuid = userSdkService.findUserInfoByUuid(assetForm.getUuid()); UserSysResult<UserInfo> userInfoByUuid = userSdkService.findUserInfoByUuid(assetForm.getUuid());
if (!userInfoByUuid.isSuccess()){ if (!userInfoByUuid.isSuccess()){
log.error("你我贷进件申请获取用户中心信息失败, uuid : {}, orderId : {}", assetForm.getUuid(), assetForm.getBizNo()); log.error("你我贷进件申请获取用户中心信息失败, uuid : {}, orderId : {}", assetForm.getUuid(), assetForm.getBizNo());
throw new QGException(QGExceptionType.GET_USER_INFO_ERROR); throw new QGException(QGExceptionType.GET_USER_INFO_ERROR, assetForm.getUuid());
} }
IdCardA idCardFront = JSON.parseObject(ocrIdCardRow.getIdCardContentA(), IdCardA.class); IdCardA idCardFront = JSON.parseObject(ocrIdCardRow.getIdCardContentA(), IdCardA.class);
IdCardB idCardBack = JSON.parseObject(ocrIdCardRow.getIdCardContentB(), IdCardB.class); IdCardB idCardBack = JSON.parseObject(ocrIdCardRow.getIdCardContentB(), IdCardB.class);
......
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