Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
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
项目统一框架
amos-boot-biz
Commits
85b4cca9
Commit
85b4cca9
authored
Jul 31, 2024
by
李松
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加大屏登记证详情接口
parent
53086894
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
2 deletions
+13
-2
JgUseRegistrationManageServiceImpl.java
.../biz/service/impl/JgUseRegistrationManageServiceImpl.java
+13
-2
No files found.
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/service/impl/JgUseRegistrationManageServiceImpl.java
View file @
85b4cca9
...
@@ -583,9 +583,20 @@ public class JgUseRegistrationManageServiceImpl extends BaseService<JgUseRegistr
...
@@ -583,9 +583,20 @@ public class JgUseRegistrationManageServiceImpl extends BaseService<JgUseRegistr
}
}
});
});
// 流水信息
// 流水信息
List
<
Map
<
String
,
String
>>
list
=
operationRecord
(
sequenceNbr
);
List
<
JgCertificateChangeRecord
>
changeRecordList
=
jgCertificateChangeRecordService
.
list
(
new
LambdaQueryWrapper
<
JgCertificateChangeRecord
>()
.
eq
(
JgCertificateChangeRecord:
:
getUseRegistrationCode
,
jgUseRegistrationManage
.
getUseRegistrationCode
())
.
or
().
eq
(
JgCertificateChangeRecord:
:
getCertificateNo
,
jgUseRegistrationManage
.
getCertificateNo
())
.
orderByDesc
(
JgCertificateChangeRecord:
:
getCreateDate
));
List
<
Map
<
String
,
String
>>
collect
=
changeRecordList
.
stream
()
.
map
(
x
->
{
Map
<
String
,
String
>
map
=
new
HashMap
<>();
map
.
put
(
"operatingTime"
,
simpleDateFormat
.
format
(
x
.
getRecDate
()));
map
.
put
(
"operater"
,
x
.
getChangeContent
());
map
.
put
(
"label"
,
simpleDateFormat
.
format
(
x
.
getRecDate
()));
return
map
;
}).
collect
(
Collectors
.
toList
());
HashMap
<
String
,
Object
>
map
=
new
HashMap
<>();
HashMap
<
String
,
Object
>
map
=
new
HashMap
<>();
map
.
put
(
"datas"
,
lis
t
);
map
.
put
(
"datas"
,
collec
t
);
map
.
put
(
"title"
,
"使用登记证流水"
);
map
.
put
(
"title"
,
"使用登记证流水"
);
map
.
put
(
"renderType"
,
"timeline"
);
map
.
put
(
"renderType"
,
"timeline"
);
result
.
put
(
"keyParams"
,
jsonData
);
result
.
put
(
"keyParams"
,
jsonData
);
...
...
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