Commit 5963f360 authored by liwenbin's avatar liwenbin

f

parent a4da5274
......@@ -101,7 +101,7 @@ public class NiwodaiAssetServiceImpl implements INiwodaiAssetService {
}
IdCardA idCardFront = JSON.parseObject(ocrIdCardRow.getIdCardContentA(), IdCardA.class);
IdCardB idCardBack = JSON.parseObject(ocrIdCardRow.getIdCardContentB(), IdCardB.class);
Map<String,Object> infoMap = (Map<String,Object>)queryUserBasic2Info(assetForm.getUuid(), userInfoByUuid.getData().getPhoneNo(),true).get("info");
Map<String,Object> infoMap = queryUserBasic2Info(assetForm.getUuid(), userInfoByUuid.getData().getPhoneNo(),true);
NiwodaiIncomingRequestVO vo = new NiwodaiIncomingRequestVO();
vo.setOrderId(assetForm.getBizNo());
NiwodaiCostant.UserInfo userInfo = new NiwodaiCostant.UserInfo();
......@@ -407,9 +407,8 @@ public class NiwodaiAssetServiceImpl implements INiwodaiAssetService {
* @return
*/
private static String getPhoneNoMask(String phoneNo) {
// if (StringUtils.isEmpty(phoneNo)) { throw new QGException(QGExceptionType.USER_PHONE_NO_EMPTY); }
// return phoneNo.substring(0, phoneNo.length() - 4) + "****";
return phoneNo;
if (StringUtils.isEmpty(phoneNo)) { throw new QGException(QGExceptionType.USER_PHONE_NO_EMPTY); }
return phoneNo.substring(0, phoneNo.length() - 4) + "****";
}
/**
......@@ -418,9 +417,8 @@ public class NiwodaiAssetServiceImpl implements INiwodaiAssetService {
* @return
*/
private static String getIdNoMask(String idNo) {
// if (StringUtils.isEmpty(idNo)) { throw new QGException(QGExceptionType.USER_ID_NO_EMPTY); }
// return idNo.substring(0, idNo.length() - 5) + "*****";
return idNo;
if (StringUtils.isEmpty(idNo)) { throw new QGException(QGExceptionType.USER_ID_NO_EMPTY); }
return idNo.substring(0, idNo.length() - 5) + "*****";
}
/**
......
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