17 lines
805 B
C#
17 lines
805 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
|
|
namespace WX.CRM.IBLL.Base
|
|
{
|
|
public interface IBAS_INNERGROUP_Q
|
|
{
|
|
WX.CRM.Model.Entity.BAS_INNERGROUP GetModel_InnerGroup(decimal id);
|
|
WX.CRM.Model.Entity.BAS_INNERGROUP GetInnerGroupByName(string name);
|
|
List<WX.CRM.Model.Entity.BAS_INNERGROUP> GetList();
|
|
List<WX.CRM.Model.Entity.BAS_INNERGROUP> GetListGroup(decimal[] id);
|
|
List<WX.CRM.Model.Entity.BAS_INNERGROUP> GetList_InnerGroup(ref Pager pager, string saleDeptId, string gName, string ctime1, string ctime2, decimal ishide);
|
|
object GetTreeList_InnerGroup();
|
|
object GetUserComBoxJson(int queryType, decimal _saledeptid, decimal[] _groupdid, decimal _userid, decimal innerDeptId, string roleCodes, string currentRight);
|
|
}
|
|
}
|