Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
customer-service
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
QG
customer-service
Commits
5d34f346
Commit
5d34f346
authored
Dec 03, 2021
by
吴琼
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tianjialog
parent
c9c268aa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
IceServiceImpl.java
...a/cn/quantgroup/customer/service/impl/IceServiceImpl.java
+7
-0
No files found.
src/main/java/cn/quantgroup/customer/service/impl/IceServiceImpl.java
View file @
5d34f346
...
...
@@ -275,12 +275,18 @@ public class IceServiceImpl implements IIceService {
String
logPre
=
"IceService.findUserCashApplyOrders"
;
log
.
info
(
"{} 申请订单查询 applyOrderQuery={}"
,
logPre
,
applyOrderQuery
);
Long
userId
=
applyOrderQuery
.
getUserId
();
log
.
info
(
"queryUserCashApplyOrders:begin"
);
UserOrders
userOrders
=
queryUserCashApplyOrders
(
userId
+
""
);
log
.
info
(
"queryUserCashApplyOrders:end,userOrders="
+
userOrders
);
log
.
info
(
"转化为json字符串begin"
);
ObjectMapper
mapper
=
new
ObjectMapper
();
String
result
=
mapper
.
writeValueAsString
(
userOrders
);
log
.
info
(
"转化为json字符串,result="
+
result
);
TypeReference
<
JsonResult
<
ApplyOrder
>>
typeToken
=
new
TypeReference
<
JsonResult
<
ApplyOrder
>>()
{
};
log
.
info
(
"转化为json字符串,typeToken="
+
typeToken
);
jsonResult
=
JSONTools
.
deserialize
(
result
,
typeToken
);
log
.
info
(
"转化为json字符串,jsonResult="
+
jsonResult
);
return
jsonResult
;
}
catch
(
JsonProcessingException
e
)
{
e
.
printStackTrace
();
...
...
@@ -335,6 +341,7 @@ public class IceServiceImpl implements IIceService {
}
private
LoanOrderVo
buildOldLoan
(
XyqbLoanApplicationHistory
loan
)
{
LoanOrderVo
lo
=
new
LoanOrderVo
();
log
.
info
(
"manifestHistoryService:"
+
manifestHistoryService
);
XyqbLoanApplicationManifestHistory
manifest
=
manifestHistoryService
.
findByLoanApplicationHistoryId
(
loan
.
getId
());
...
...
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