/***********************************************************************
* Project: baifenBinfa
* ProjectName: 百分兵法管理系统
* Web: http://chuanyin.com
* Author:
* Email:
* CreateTime: 202403/02
* Description: 暂无
***********************************************************************/
using System.Threading.Tasks;
using CoreCms.Net.Model.Entities;
using CoreCms.Net.Model.ViewModels.Sms;
using CoreCms.Net.Model.ViewModels.UI;
using Newtonsoft.Json.Linq;
namespace CoreCms.Net.IServices
{
///
/// 短信发送日志 服务工厂接口
///
public interface ICoreCmsSmsServices : IBaseServices
{
///
/// 发送短信(验证码)
///
///
///
///
Task DoSendSms(string type, string mobile);
///
/// 发送短信统一方法
///
/// 接受者手机号码
/// 模板编码
/// 参数
///
Task Send(string mobile, string code, JObject parameters);
///
/// 接口通道发送短信
///
///
///
///
Task SendSms(string mobile, string contentBody, SmsOptions smsOptions);
///
/// 校验短信验证码
///
///
///
///
///
Task Check(string phone, string verCode, string code);
}
}