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 GetList(); List GetListGroup(decimal[] id); List 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); } }