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); }