add 新增 sms4j 短信融合 支持数十种短信服务商共用

remove 移除 原框架自带短信功能
This commit is contained in:
疯狂的狮子Li
2023-06-21 18:42:36 +08:00
parent 97da9d0eba
commit 5e57292840
17 changed files with 121 additions and 422 deletions

View File

@@ -3,7 +3,7 @@ package org.dromara.resource.api;
import org.dromara.common.core.exception.ServiceException;
import org.dromara.resource.api.domain.RemoteSms;
import java.util.Map;
import java.util.LinkedHashMap;
/**
* 短信服务
@@ -19,6 +19,6 @@ public interface RemoteSmsService {
* @param templateId 模板id
* @param param 模板对应参数
*/
RemoteSms send(String phones, String templateId, Map<String, String> param) throws ServiceException;
RemoteSms send(String phones, String templateId, LinkedHashMap<String, String> param) throws ServiceException;
}