using System.Collections.Generic; using WX.CRM.Common; using WX.CRM.Model.Entity; using WX.CRM.Model.QueryMap; namespace WX.CRM.IBLL.weapp { public interface IWEAPP_USERINFO : IRepository { List GetWeappUserInfoViews(ref Pager pager, string resId, decimal? eid, string nickName); int BindResIdByOpenId(string openId, string resId, decimal resIdVerify, ref ValidationErrors errors); WEAPP_USERINFO_ORDEREXT GetUserInfoOrderExtByOpenId(string openId); } }