...
|
...
|
@@ -40,7 +40,7 @@ public class SendSmsService { |
|
|
|
|
|
public void smsSendByMobile(String content, List<String> mobileList, Integer businessClient) {
|
|
|
String finalContent = noticeMessageFormatter.formatWithBusinessClient(content, businessClient);
|
|
|
log.info("smsSendByMobile start, content {}, mobileList {}", content, mobileList);
|
|
|
log.info("smsSendByMobile start, content {}, mobileList {}", finalContent, mobileList);
|
|
|
if (StringUtils.isEmpty(finalContent) || CollectionUtils.isEmpty(mobileList)) {
|
|
|
log.warn("smsSendByMobile fail! content is null or mobileList is empty");
|
|
|
return;
|
...
|
...
|
|