合并 master 分支的代码

This commit is contained in:
YunaiV
2021-03-14 19:21:14 +08:00
parent 2e58e8585e
commit 0fedc8fece
7 changed files with 6 additions and 89 deletions

View File

@@ -24,7 +24,7 @@ public interface SmsClient {
*/
SmsResult send(String templateApiId, SmsBody smsBody, String targets);
// TODO FROM 芋艿 to ZZF是不是可以改成意图更明确的解析返回结果例如说 parseXXXX
/**
* 短信发送回调请求处理
*
@@ -33,4 +33,4 @@ public interface SmsClient {
*/
SmsResultDetail smsSendCallbackHandle(ServletRequest request) throws Exception;
}
}

View File

@@ -115,7 +115,6 @@ public class SmsClientFactory {
* @return 第三方平台短信唯一标识
*/
public SmsResultDetail getSmsResultDetailFromCallbackQuery(ServletRequest callbackRequest) {
for (Long channelId : smsSenderMap.keySet()) {
AbstractSmsClient smsClient = smsSenderMap.get(channelId);
try {