using Mini.Model.CrmModel; using Mini.Model.ViewModel; using Mini.Model.WxEntity; using System; using System.Collections.Generic; using System.Data; using System.Text; namespace Mini.Services.wx { public interface Iwx_workwechat_Service { Wx_Rcontact GetRcontact(string workusername, string username); /// /// 获取工作微信信息 /// /// /// Wx_WorkAccount GetWorAccount(string worusername); DataTable GetGroupNumber(string v_roomname); /// /// 获取企业微信成员列表 /// /// ID /// List WorList_Get(ref Laypage pager, string name); /// /// 获取 工作微信好友列表 /// /// 工作微信号 /// 排序 /// /// List GetRcontactByWorkAccount(string workUsername, string column, string sort); /// /// 获取 工作微信群列表 /// /// /// /// /// List GetGroupsByWorkAccount(string workUsername, string column, string sort); /// /// 获取好友列表 /// /// /// /// /// /// /// /// /// /// List GetRcontactList(ref Laypage page, string jobWxUserName, string keyword, string stime, string etime); /// /// 显示红包 /// /// /// List ShowWxHongBao(ref Laypage page, string v_id, string v_username, DateTime? stime, DateTime? etime); } }