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 { DataTable CountByDayReport(DateTime? beginTime, DateTime? endTime); decimal GetDistinctWeWorkFriendCount(string day); DataTable CountByUserAndDay(DateTime beginTime, DateTime endTime); List GetList(string userId, DateTime? day); /// /// 客户资料和企业微信绑定获取 /// /// /// string[] ExtUserBandGet(string resid); /// /// 从合规中心点拿22数据 /// /// /// string[] ExtUserBandGetNew(string resid); } }