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.
21 lines
398 B
21 lines
398 B
1 year ago
|
package com.zc.business.service;
|
||
|
|
||
|
import com.alibaba.fastjson.JSONArray;
|
||
|
import com.ruoyi.common.core.domain.AjaxResult;
|
||
|
|
||
|
public interface IMsmService {
|
||
|
/**
|
||
|
* 发送短信
|
||
|
*
|
||
|
* @param phone 手机号
|
||
|
* @return
|
||
|
*/
|
||
|
public boolean send(String phone);
|
||
|
/**
|
||
|
* 微信推送
|
||
|
*
|
||
|
* @return
|
||
|
*/
|
||
|
JSONArray wenXinSend(String appId, String appSecret);
|
||
|
|
||
|
}
|