TG.WXCRM.V4/IBLL/Sms/ISMS_BATCHMSG_Q.cs

20 lines
889 B
C#

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<WX.CRM.Model.Entity.SMS_BATCHMSG> GetList(int PageIndex, int PageSize, ref int rcount);
WX.CRM.Model.Entity.SMS_BATCHMSG GetTopInfo();
List<WX.CRM.Model.Entity.SMS_BATCHMSGDETAIL> GetDetailList(int topNum, decimal batchid);
List<WX.CRM.Model.Entity.SMS_BATCHMSGDETAIL> GetPopularDetailList(int topNum, decimal batchid);
void ExecLog(List<decimal> detaisIds, WX.CRM.Model.Entity.SMS_SENDLOG logInfo);
List<WX.CRM.Model.Entity.SMS_BATCHMSG> 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);
}
}