Toggle navigation
Toggle navigation
This project
Loading...
Sign in
YOHOBUY
/
yohobuy-union
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
Ge
8 years ago
Commit
7f421bc6e0fd6aca951f0057200e4bb60bdfc3ab
1 parent
ba99cd5f
update
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
channel/src/main/java/com/yoho/unions/channel/service/impl/ChannelGroupServiceImpl.java
channel/src/main/java/com/yoho/unions/channel/service/impl/ChannelGroupServiceImpl.java
View file @
7f421bc
...
...
@@ -221,6 +221,17 @@ public class ChannelGroupServiceImpl implements IChannelGroupService {
if
(
total
==
0
)
{
logger
.
info
(
"not find users to send message,groupId={},content={},sendUserId={},sendUserName={}"
,
groupId
,
content
,
sendUserId
,
sendUserName
);
//即使从大数据里面查询不出数据,也需要给测试号发短信
List
<
String
>
businessMobileList
=
Arrays
.
asList
(
businessMobile
.
split
(
","
));
for
(
String
mobile:
businessMobileList
){
try
{
SendMessageRspBo
sendMessageRspBo
=
sendCrmMessage
.
generalSceneMsg
(
mobile
,
content
);
logger
.
info
(
"sendMessage:call generalSceneMsg,sendMessageRspBo is {}"
,
sendMessageRspBo
);
}
catch
(
Exception
e
)
{
logger
.
warn
(
"sendMessage:call generalSceneMsg occurs Exception,e is {}"
,
e
.
getMessage
());
}
}
return
;
}
Set
<
String
>
mobileSet
=
Sets
.
newHashSet
();
...
...
Please
register
or
login
to post a comment