1234567891011121314151617181920 |
- package com.backendsys.modules.tencent.service;
- import com.backendsys.modules.tencent.entity.SmsCallbackStatis;
- import com.backendsys.modules.tencent.entity.SmsStatis;
- import com.tencentcloudapi.common.exception.TencentCloudSDKException;
- import com.tencentcloudapi.sms.v20210111.models.SendSmsResponse;
- import java.util.Map;
- public interface TencentSmsService {
- // [腾讯云] 发送短信 { 模板ID, 模板参数, 下发手机号码 }
- SendSmsResponse send(String template_id, String[] templateParamSet, String[] phoneNumberSet) throws TencentCloudSDKException;
- // [腾讯云] 获得统计短信发送数据
- SmsStatis getSMSStatistics(String beginTime, String endTime) throws TencentCloudSDKException;
- // [腾讯云] 获得回执数据统计
- SmsCallbackStatis getSMSCallbackStatistics(String beginTime, String endTime) throws TencentCloudSDKException;
- }
|