新版仿ok交易所-后端
zyy
2025-09-03 57d779ee4f65850c59cb6c2e281ac9f35e9dcc9f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.yami.trading.service;
 
/**
 * 短信发送,异步发送,写入SmsMessageQueue队列返回
 *
 */
public interface SmsSendService {
 
    /**
     * 单发短信
     *
     * @param mobile   手机号
     * @param content 短信内容
     */
    public void send(String mobile, String content);
 
}