You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
552 B
26 lines
552 B
package com.zc.business.service;
|
|
|
|
import com.alibaba.fastjson.JSONArray;
|
|
import com.ruoyi.common.core.domain.AjaxResult;
|
|
import org.springframework.http.converter.xml.AbstractJaxb2HttpMessageConverter;
|
|
|
|
import java.util.HashMap;
|
|
|
|
public interface IMsmService {
|
|
/**
|
|
* 发送短信
|
|
*
|
|
* @param phone 手机号
|
|
* @return
|
|
*/
|
|
public boolean send(String phone);
|
|
/**
|
|
* 微信推送
|
|
*
|
|
* @return
|
|
*/
|
|
JSONArray wenXinSend(String content);
|
|
//整合推送
|
|
public AjaxResult putAll(HashMap map);
|
|
|
|
}
|