13 lines
469 B
C#
13 lines
469 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
|
|
namespace WX.CRM.IBLL.Base
|
|
{
|
|
public interface IBAS_INNERUSERROLE_Q
|
|
{
|
|
List<WX.CRM.Model.Entity.BAS_INNERUSERROLE_Extend> GetList(ref Pager pager, string eId, string uName, string roleId);
|
|
List<WX.CRM.Model.Entity.BAS_INNERUSERROLE> GetInneruserRoleByUserId(decimal userId);
|
|
List<WX.CRM.Model.Entity.BAS_INNERUSERROLE> GetInneruserRoleByUserIdList(List<decimal> userIds);
|
|
}
|
|
}
|