Authored by Ge

update

... ... @@ -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();
... ...