Authored by Amos_sdy

恢复

... ... @@ -37,5 +37,5 @@ public class SendScenes {
public static final String CONSULT_REPLY = "CONSULT_REPLY";
// 市场通用场景(只需提供手机号和发送的内容)
public static final String MARKET_GENERAL_SCENE = "MARKET_GENERAL_SCENE";
public static final String GENERAL_SCENE = "GENERAL_SCENE";
}
... ...
... ... @@ -36,7 +36,7 @@ public class SendCrmMessageImpl extends AbstractSendMessage implements ISendCrmM
@Override
public SendMessageRspBo generalSceneMsg(String mobiles, String content) {
MessageCenterCommonEvent messageCenterCommonEvent = genMessageCenterCommonEvent(SendScenes.MARKET_GENERAL_SCENE, "200", "");
MessageCenterCommonEvent messageCenterCommonEvent = genMessageCenterCommonEvent(SendScenes.GENERAL_SCENE, "200", "");
// 增加手机号分片处理
if (StringUtils.isNotBlank(mobiles)) {
List<String> mobileList = Arrays.asList(mobiles.split(","));
... ...