TG.WXCRM.V4/IBLL/WeWork/IWW_EXTUSER.cs

28 lines
728 B
C#

using System;
using System.Collections.Generic;
using System.Data;
using WX.CRM.Model.Entity;
using WX.CRM.Model.MAP;
namespace WX.CRM.IBLL.WeWork
{
public interface IWW_EXTUSER : IRepository<WW_EXTUSER>
{
DataTable CountByDayReport(DateTime? beginTime, DateTime? endTime);
decimal GetDistinctWeWorkFriendCount(string day);
DataTable CountByUserAndDay(DateTime beginTime, DateTime endTime);
List<WW_EXTUSER_Extend> GetList(string userId, DateTime? day);
/// <summary>
/// 客户资料和企业微信绑定获取
/// </summary>
/// <param name="resid"></param>
/// <returns></returns>
string[] ExtUserBandGet(string resid);
}
}