using JNPF.Systems.Entitys.System; namespace JNPF.Systems.Interfaces.System; /// /// 业务契约:消息模板. /// public interface IMessageTemplateService { /// /// 获取信息. /// /// 主键值. /// Task GetInfo(string id); /// /// 发送通知. /// /// 推送方式 /// 标题 /// 接收用户 /// /// /// Task SendNodeMessage(List typeList, MessageTemplateEntity messageTemplateEntity, List userList, Dictionary parameters, Dictionary bodyDic); }