|
@@ -186,7 +186,19 @@ public class RemoteCallServiceImpl implements RemoteCallService {
|
|
|
List<PushMessageUserVo> pushUsers = messagePushMapper.findOldUser();
|
|
|
//https://www.caimei365.com/product/hot.html指向新品橱窗
|
|
|
String url = "https://www.caimei365.com/product/hot.html";
|
|
|
-
|
|
|
+ List<String> list = new ArrayList<String>();
|
|
|
+ list.add("15917362709");
|
|
|
+ list.add("15814011616");
|
|
|
+ list.add("13100721916");
|
|
|
+ list.add("15113936829");
|
|
|
+ list.add("15827317748");
|
|
|
+ list.add("18476937515");
|
|
|
+ list.add("18605868824");
|
|
|
+ list.forEach(l->{
|
|
|
+ PushMessageUserVo pushMessageUserVo = new PushMessageUserVo();
|
|
|
+ pushMessageUserVo.setMobile(l);
|
|
|
+ pushUsers.add(pushMessageUserVo);
|
|
|
+ });
|
|
|
pushUsers.forEach(p -> {
|
|
|
p.setJumpLink(url);
|
|
|
String link = getLink();
|
|
@@ -194,7 +206,7 @@ public class RemoteCallServiceImpl implements RemoteCallService {
|
|
|
p.setMarkId(23);
|
|
|
messagePushMapper.insertNewLink(p);
|
|
|
String content = "亲,好久没登陆采美了,近期在找新项目吗?采美新品橱窗有多款院线产品和仪器,现在登陆采美https://www.caimei365.com/t/" +
|
|
|
- link + ",可获一张包邮券!退订回TD";
|
|
|
+ link + ",可获一张包邮券!退订回T";
|
|
|
getSendSms(23, p.getMobile(), content);
|
|
|
log.info("userId-------------------->" + p.getUserId() + "发送手机号------------------------>" + p.getMobile() + "短信-------------->" + content);
|
|
|
});
|