22 lines
816 B
C#
22 lines
816 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
using WX.CRM.Model.MAP;
|
|
using WX.CRM.Model.QueryMap;
|
|
|
|
namespace WX.CRM.IBLL.Wx
|
|
{
|
|
public interface IWX_MESSAGE : IRepository<WX_MESSAGE>
|
|
{
|
|
List<WX_MESSAGE> GetTopList(decimal maxtPkid, int topNum);
|
|
|
|
List<WX_Message_Extend> GetMessageList(ref Pager pager, string keyword, string tableName, string userNames, string stime, string etime, string customerUserName);
|
|
|
|
void UpdateMessageIsIllegal(string tableName, string userName, string msgSvrid);
|
|
|
|
List<MessageCountView> GetMessageCount(string groupId, string inneruserId, DateTime sTime, DateTime eTime);
|
|
|
|
List<MessageCount2View> GetMessageCount2(string groupId, string inneruserId, DateTime sTime, DateTime eTime);
|
|
}
|
|
} |