using System.Collections.Generic;
using System.Threading.Tasks;
namespace GxPress.Service.Interface.Sms
{
public interface ISmsService : IService
{
///
/// 广西短信模板
///
///
///
///
Task SendSmsTemplate(List phones, string templateId, int sourceId=0, int sourceType=0);
}
}