using JiepeiWMS.IServices.BASE; using JiepeiWMS.Model.Models; namespace JiepeiWMS.IServices { /// /// ISmsLogServices /// public interface ISmsLogServices :IBaseServices { /// /// 短信推送添加日志 /// /// 员工ID /// 接收短信者 /// 发送类型说明 /// 发送内容 /// 返回状态 /// 短信接入商 /// 短信批次号,只有在批量发送有意义。 /// int AddSmssLog(int UserId, string Mobile, string SendType, string content, string ResponseInfo, string SmsFrom, string BatchSendNo); } }