2021与蓝度共同重构项目,服务端
liuhaonan
2022-11-07 ddfbc40f9ca8546a2c34865abef51630f054d5e9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.sandu.common.sms;
 
/**
 * @author chenjiantian
 * @date 2021/9/27 15:47
 */
public interface ISmsSender {
 
 
 
    /**
     * 通过短信模版发送短信息
     *
     * @param phone      接收通知的电话号码
     * @param params     通知模版内容里的参数,类似"您的验证码为{1}"中{1}的值
     */
    AliyunSmsResult sendWithTemplate(String phone, String[] params);
}