13 lines
345 B
C#
13 lines
345 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Model.Entity;
|
|
using WX.CRM.Model.QueryMap;
|
|
|
|
namespace WX.CRM.IBLL.weapp
|
|
{
|
|
public interface IWEAPP_GROUP : IRepository<WEAPP_GROUP>
|
|
{
|
|
IList<WEAPP_GROUP> GetGroup(string accountNUm, decimal eid);
|
|
WeappUserGroupView GetUserGroup(string accountNum, decimal userEid);
|
|
}
|
|
}
|