Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
asset-distribution
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
data-spider
asset-distribution
Commits
44398559
Commit
44398559
authored
Jun 08, 2020
by
liwenbin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
4f548da5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
NiwodaiAssetServiceImpl.java
...ibution/service/niwodai/impl/NiwodaiAssetServiceImpl.java
+2
-2
No files found.
src/main/java/com/quantgroup/asset/distribution/service/niwodai/impl/NiwodaiAssetServiceImpl.java
View file @
44398559
...
...
@@ -77,7 +77,7 @@ public class NiwodaiAssetServiceImpl implements INiwodaiAssetService {
UserSysResult
<
UserInfo
>
userInfoByUuid
=
userSdkService
.
findUserInfoByUuid
(
uuid
);
if
(!
userInfoByUuid
.
isSuccess
()){
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
();
...
...
@@ -124,7 +124,7 @@ public class NiwodaiAssetServiceImpl implements INiwodaiAssetService {
UserSysResult
<
UserInfo
>
userInfoByUuid
=
userSdkService
.
findUserInfoByUuid
(
assetForm
.
getUuid
());
if
(!
userInfoByUuid
.
isSuccess
()){
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
);
IdCardB
idCardBack
=
JSON
.
parseObject
(
ocrIdCardRow
.
getIdCardContentB
(),
IdCardB
.
class
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment