/*********************************************************************** * Project: CoreCms * ProjectName: 核心内容管理系统 * Web: https://www.corecms.net * Author: 大灰灰 * Email: jianweie@163.com * CreateTime: 2021/1/31 21:45:10 * 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); } }