using System; using System.Data; namespace WX.CRM.IBLL.weapp { public interface IWX_UserInfo { bool weapp_userinfo_Storage(string v_openid, string v_nickname, int v_gender, string v_language, string v_city, string v_province, string v_country, string v_avatarurl, int v_infotype, string v_unionid, int? Subscribe, DateTime? SubscribeTime, string AccountNum); bool Img_flat_Storage(string v_username, int v_imgflag, long v_lastupdatetime, string v_url1, string v_url2, string v_url3, string v_url4); DataTable GetUserHeadInfo(string openid); DataTable GetFenPeiCustomerService(int type, string openid, string onlineUser, string accountnum, string fenpei); DataSet GetCustomerInfoByOpenId(string openid); DataTable Get_ImgFlagForDownLoad(); /// /// 修改数据 /// /// /// /// /// bool Upadte_ImgFlag(string v_username, string v_md5, string v_file); /// /// 获取用户头像信息 /// /// 打开ID /// DataTable Get_WeapUserInfo(); /// /// 修改数据 /// /// /// /// /// bool Up_WeapImgFlag(string v_openid, string v_md5, string v_file); /// /// 获取微信公众号列表 以及分配过程 /// /// DataTable GetWxAccount(); /// /// 获取好友列表 /// /// /// /// DataTable GetFriends(decimal eid, string accountnum); /// /// 获取在线人员 /// /// DataTable GetOnlineUser(); /// /// 客服上线 /// /// /// /// /// /// /// /// bool Logon(string v_ConnectionId, string v_UserID, string v_UserName, string v_DeptName, DateTime v_LoginTime, string v_accountNum); /// /// 客服离线 /// /// /// /// bool UnLogon(string v_UserId, string v_accountNum); bool weapp_update_subscribe(string v_openid, string v_subType, DateTime v_time, string v_AccountNum); bool UpdateSendTime(string v_openid, DateTime v_ctime, string v_AccountNum, decimal eid); DataTable TransferEid(int fromEid, int toEid, string openId, string accountNum); DataTable GetUserAccount(decimal eid); } }