Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
csbr-daop
/
ms-data-circulation-portal-service
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
a22f697d
authored
2025-02-18 15:10:07 +0800
by
肖初晴
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge remote-tracking branch 'origin/develop' into develop
2 parents
3bc3fee7
1ca861fc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
src/main/java/com/csbr/qingcloud/portal/service/impl/DemandServiceImpl.java
src/main/java/com/csbr/qingcloud/portal/service/impl/DemandServiceImpl.java
View file @
a22f697
...
...
@@ -572,8 +572,9 @@ public class DemandServiceImpl extends FlowAbstractImpl implements DemandService
if
(
CollectionUtils
.
isNotEmpty
(
pageList
.
getRecords
())){
List
<
String
>
guids
=
pageList
.
getRecords
().
stream
().
map
(
MfDemand:
:
getGuid
).
collect
(
Collectors
.
toList
());
List
<
DemandRSVO
>
results
=
new
ArrayList
<>();
Map
<
String
,
DemandUpdateStateVO
>
stateMap
=
getStateMap
(
guids
);
for
(
MfDemand
item
:
pageList
.
getRecords
()){
DemandRSVO
vo
=
convertToVO
(
item
,
getStateMap
(
guids
)
);
DemandRSVO
vo
=
convertToVO
(
item
,
stateMap
);
results
.
add
(
vo
);
}
rsPageList
.
setRecords
(
results
);
...
...
Write
Preview
Styling with
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