using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WX.CRM.Model.Entity; namespace WX.CRM.BLL.Base { public interface IBAS_BUSINESSLINE_Q { Dictionary GetChannelByUser(List userId); void InsertBusCustomerMap(string resId, int? channel, string customerfrom); /// /// 根据员工pkid获取事业线 /// /// /// BAS_BUSINESSLINES GetBusineeLine(decimal userId); /// /// /// /// /// List GetBusinessLineByRoot(decimal userId); /// /// 获取所选部门 事业线 /// /// /// List GetBusinessLineByAnyUser(IList deptIds); /// /// 获取下订单时候 部门归属对应的事业部 /// /// List GetDeptCodeMapByBusinessId(decimal? businessId); } }