dashboard
repositories
filestore
activity
search
login
main
/
xinbi-new
本地新币代码
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
1
zj
2025-06-23
dc9bd22833255bc602dd42c7f603ecb50842ab35
[xinbi-new.git]
/
src
/
main
/
java
/
smsbao
/
SmsSendService.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package smsbao;
/**
* 短信发送,异步发送,写入SmsMessageQueue队列返回
*
*/
public interface SmsSendService {
/**
* 单发短信
*
* @param phone 手机号
* @param content 短信内容
*/
public void send(String mobile, String content);
}