17 lines
531 B
C#
17 lines
531 B
C#
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<WEAPP_USERINFO>
|
|
{
|
|
List<WeappUserInfoView> 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);
|
|
}
|
|
}
|