17 lines
422 B
C#
17 lines
422 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Model.MAP;
|
|
|
|
namespace WX.CRM.IBLL.Res
|
|
{
|
|
public interface IRES_SALESGROUP_DETAIL_Q
|
|
{
|
|
/// <summary>
|
|
/// 获取分组员工明细列表
|
|
/// </summary>
|
|
/// <param name="groupId"></param>
|
|
/// <returns></returns>
|
|
List<RES_SALESGROUP_DETAIL_Extend> GetRES_SALESGROUP_DETAIL_List(decimal groupId, string strategy);
|
|
|
|
}
|
|
}
|