ISmsService.cs 463 B

12345678910111213141516
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. namespace GxPress.Service.Interface.Sms
  4. {
  5. public interface ISmsService : IService
  6. {
  7. /// <summary>
  8. /// 广西短信模板
  9. /// </summary>
  10. /// <param name="phone"></param>
  11. /// <param name="code"></param>
  12. /// <returns></returns>
  13. Task<bool> SendSmsTemplate(List<string> phones, string templateId, int sourceId=0, int sourceType=0);
  14. }
  15. }