Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-manage3.0
Overview
Overview
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
haoban3.0
haoban-manage3.0
Commits
2943d23a
Commit
2943d23a
authored
Dec 14, 2022
by
徐高华
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test
parent
9a884926
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
8 deletions
+10
-8
GroupChatPlanController.java
...n/manage/web/controller/chat/GroupChatPlanController.java
+10
-8
No files found.
haoban-manage3-web/src/main/java/com/gic/haoban/manage/web/controller/chat/GroupChatPlanController.java
View file @
2943d23a
...
@@ -167,17 +167,19 @@ public class GroupChatPlanController {
...
@@ -167,17 +167,19 @@ public class GroupChatPlanController {
qdto
.
setEnterpriseId
(
loginUser
.
getEnterpriseId
());
qdto
.
setEnterpriseId
(
loginUser
.
getEnterpriseId
());
BasePageInfo
basePageInfo
=
new
BasePageInfo
();
BasePageInfo
basePageInfo
=
new
BasePageInfo
();
basePageInfo
.
setPageNum
(
1
);
basePageInfo
.
setPageNum
(
1
);
basePageInfo
.
setPage
Num
(
10000
);
basePageInfo
.
setPage
Size
(
10000
);
ServiceResponse
<
Page
<
GroupChatPlanOwnerLogDTO
>>
ownerResp
=
this
.
groupChatPlanApiService
.
listOwnerLogPage
(
planId
,
qdto
,
basePageInfo
)
;
ServiceResponse
<
Page
<
GroupChatPlanOwnerLogDTO
>>
ownerResp
=
this
.
groupChatPlanApiService
.
listOwnerLogPage
(
planId
,
qdto
,
basePageInfo
)
;
if
(
ownerResp
.
isSuccess
())
{
if
(
ownerResp
.
isSuccess
())
{
List
<
GroupChatPlanOwnerLogDTO
>
list
=
ownerResp
.
getResult
().
getResult
()
;
List
<
GroupChatPlanOwnerLogDTO
>
list
=
ownerResp
.
getResult
().
getResult
()
;
List
<
ChatOwnerVO
>
ownerList
=
list
.
stream
().
map
(
dto
->{
if
(
CollectionUtils
.
isNotEmpty
(
list
))
{
ChatOwnerVO
owner
=
new
ChatOwnerVO
();
List
<
ChatOwnerVO
>
ownerList
=
list
.
stream
().
map
(
dto
->{
owner
.
setStaffId
(
dto
.
getStaffId
());
ChatOwnerVO
owner
=
new
ChatOwnerVO
();
owner
.
setStaffName
(
dto
.
getStaffName
());
owner
.
setStaffId
(
dto
.
getStaffId
());
return
owner
;
owner
.
setStaffName
(
dto
.
getStaffName
());
}).
collect
(
Collectors
.
toList
())
;
return
owner
;
vo
.
setOwnerList
(
ownerList
);
}).
collect
(
Collectors
.
toList
())
;
vo
.
setOwnerList
(
ownerList
);
}
}
}
return
RestResponse
.
successResult
(
vo
);
return
RestResponse
.
successResult
(
vo
);
}
}
...
...
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