using System; using System.Collections.Generic; using WX.CRM.Common; using WX.CRM.Model.MAP; namespace WX.CRM.IBLL.Sms { public interface ISMS_BATCHMSG_Q { List GetList(int PageIndex, int PageSize, ref int rcount); WX.CRM.Model.Entity.SMS_BATCHMSG GetTopInfo(); List GetDetailList(int topNum, decimal batchid); List GetPopularDetailList(int topNum, decimal batchid); void ExecLog(List detaisIds, WX.CRM.Model.Entity.SMS_SENDLOG logInfo); List GetList(ref Pager pager, string Stime, string Etime, string msgType, QueryUserComboDto userComboDto); System.Data.DataSet GetMessageList(ref Pager pager, string resid, int? rn, DateTime? stime, DateTime? etime); } }