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
1
Merge Requests
1
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
1981a7c8
Commit
1981a7c8
authored
Apr 18, 2023
by
王祖波
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
异常处理
parent
4fc3c576
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
NoticeMessageApiServiceImpl.java
...rvice/service/notify/out/NoticeMessageApiServiceImpl.java
+7
-3
No files found.
haoban-manage3-service/src/main/java/com/gic/haoban/manage/service/service/notify/out/NoticeMessageApiServiceImpl.java
View file @
1981a7c8
...
@@ -195,9 +195,13 @@ public class NoticeMessageApiServiceImpl implements NoticeMessageApiService {
...
@@ -195,9 +195,13 @@ public class NoticeMessageApiServiceImpl implements NoticeMessageApiService {
// 用于成员去重
// 用于成员去重
Set
<
String
>
userIdSet
=
new
HashSet
<>();
Set
<
String
>
userIdSet
=
new
HashSet
<>();
List
<
List
<
StaffClerkRelationDTO
>>
listList
=
ListUtil
.
split
(
v
,
1000
);
List
<
List
<
StaffClerkRelationDTO
>>
listList
=
ListUtil
.
split
(
v
,
1000
);
listList
.
forEach
(
list
->{
for
(
List
<
StaffClerkRelationDTO
>
list
:
listList
)
{
sendMessage
(
notifyMessageBatchQDTO
,
list
,
userIdSet
,
qwDTO
);
try
{
});
sendMessage
(
notifyMessageBatchQDTO
,
list
,
userIdSet
,
qwDTO
);
}
catch
(
Exception
e
)
{
logger
.
error
(
"发送消息通知失败"
,
e
);
}
}
});
});
return
ServiceResponse
.
success
();
return
ServiceResponse
.
success
();
}
}
...
...
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