12345678910111213141516 |
- using System.Collections.Generic;
- using System.Threading.Tasks;
- namespace GxPress.Service.Interface.Sms
- {
- public interface ISmsService : IService
- {
- /// <summary>
- /// 广西短信模板
- /// </summary>
- /// <param name="phone"></param>
- /// <param name="code"></param>
- /// <returns></returns>
- Task<bool> SendSmsTemplate(List<string> phones, string templateId, int sourceId=0, int sourceType=0);
- }
- }
|