Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation
This project
Loading...
Sign in
李苗
/
Vion-DevOps
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 6d98502c
authored
Nov 08, 2024
by
HlQ
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
[add] 关注 mall 列表接口添加 mall 绑定事件列表
1 parent
1d3f1149
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
src/main/java/vion/service/impl/monitor/MallServiceImpl.java
src/main/java/vion/service/impl/monitor/MallServiceImpl.java
View file @
6d98502
...
...
@@ -116,6 +116,8 @@ public class MallServiceImpl extends MPJBaseServiceImpl<MallMapper, Mall> implem
return
null
;
}
var
mallUidList
=
eventRecordList
.
stream
().
map
(
EventRecord:
:
getMallUid
).
toList
();
var
agentEventList
=
agentEventService
.
lambdaQuery
().
in
(
RAgentEvent:
:
getMallUid
,
mallUidList
).
list
();
var
mallUid2AgentEventMap
=
agentEventList
.
stream
().
collect
(
Collectors
.
groupingBy
(
RAgentEvent:
:
getMallUid
));
var
wrapper
=
new
MPJLambdaWrapper
<>(
converter
.
convert
(
dto
,
Mall
.
class
))
.
selectAll
(
Mall
.
class
)
...
...
@@ -129,7 +131,10 @@ public class MallServiceImpl extends MPJBaseServiceImpl<MallMapper, Mall> implem
Opt
.
ofEmptyAble
(
mallVOPage
.
getRecords
())
.
ifPresent
(
r
->
{
var
mallUid2SelfMap
=
eventRecordList
.
stream
().
collect
(
Collectors
.
groupingBy
(
EventRecord:
:
getMallUid
));
r
.
forEach
(
tmp
->
tmp
.
setEventRecordList
(
mallUid2SelfMap
.
get
(
tmp
.
getUid
())));
r
.
forEach
(
tmp
->
{
tmp
.
setEventRecordList
(
mallUid2SelfMap
.
getOrDefault
(
tmp
.
getUid
(),
List
.
of
()));
tmp
.
setAgentEventList
(
mallUid2AgentEventMap
.
getOrDefault
(
tmp
.
getUid
(),
List
.
of
()));
});
});
return
mallVOPage
;
}
...
...
Write
Preview
Markdown
is supported
Attach a file
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 post a comment