Commit 5963f360 authored by liwenbin's avatar liwenbin

f

parent a4da5274
...@@ -101,7 +101,7 @@ public class NiwodaiAssetServiceImpl implements INiwodaiAssetService { ...@@ -101,7 +101,7 @@ public class NiwodaiAssetServiceImpl implements INiwodaiAssetService {
} }
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);
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(); NiwodaiIncomingRequestVO vo = new NiwodaiIncomingRequestVO();
vo.setOrderId(assetForm.getBizNo()); vo.setOrderId(assetForm.getBizNo());
NiwodaiCostant.UserInfo userInfo = new NiwodaiCostant.UserInfo(); NiwodaiCostant.UserInfo userInfo = new NiwodaiCostant.UserInfo();
...@@ -407,9 +407,8 @@ public class NiwodaiAssetServiceImpl implements INiwodaiAssetService { ...@@ -407,9 +407,8 @@ public class NiwodaiAssetServiceImpl implements INiwodaiAssetService {
* @return * @return
*/ */
private static String getPhoneNoMask(String phoneNo) { private static String getPhoneNoMask(String phoneNo) {
// if (StringUtils.isEmpty(phoneNo)) { throw new QGException(QGExceptionType.USER_PHONE_NO_EMPTY); } if (StringUtils.isEmpty(phoneNo)) { throw new QGException(QGExceptionType.USER_PHONE_NO_EMPTY); }
// return phoneNo.substring(0, phoneNo.length() - 4) + "****"; return phoneNo.substring(0, phoneNo.length() - 4) + "****";
return phoneNo;
} }
/** /**
...@@ -418,9 +417,8 @@ public class NiwodaiAssetServiceImpl implements INiwodaiAssetService { ...@@ -418,9 +417,8 @@ public class NiwodaiAssetServiceImpl implements INiwodaiAssetService {
* @return * @return
*/ */
private static String getIdNoMask(String idNo) { private static String getIdNoMask(String idNo) {
// if (StringUtils.isEmpty(idNo)) { throw new QGException(QGExceptionType.USER_ID_NO_EMPTY); } if (StringUtils.isEmpty(idNo)) { throw new QGException(QGExceptionType.USER_ID_NO_EMPTY); }
// return idNo.substring(0, idNo.length() - 5) + "*****"; return idNo.substring(0, idNo.length() - 5) + "*****";
return idNo;
} }
/** /**
......
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