using JNPF.Systems.Entitys.Dto.SysConfig; namespace JNPF.Systems.Interfaces.System; /// /// 业务契约:短信模板. /// public interface ISmsTemplateService { /// /// 获取短信模板字段. /// /// /// Task> GetSmsTemplateFields(string id); /// /// 工作流发送短信. /// /// /// /// /// /// Task FlowTaskSend(string id, SysConfigOutput sysconfig, List phoneNumbers, Dictionary parameters); }