using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace Common.Tools.Message { /// ///短信信息发送相关接口 /// public interface ISmsService { /// /// 短信发送 /// /// 接收手机号列表多个用,间隔最多不能超过1000个 /// 短信内容 内容和TemplateCode模版ID必须有一项 /// 模版ID /// 模版变量 /// 短信签名 /// Task> SendSmsAsync(List MobileList,string SmsValue=null,string TemplateCode=null,Dictionary TemplateParam=null, string SignName=null); } }