Commit 44d4683d authored by 黄奎's avatar 黄奎

查询修改

parent 01d0e242
......@@ -1333,14 +1333,15 @@ namespace Edu.Module.Customer
/// <param name="StartTime"></param>
/// <param name="EndTime"></param>
/// <returns></returns>
public object MarketChannelStaticModule(string StartTime, string EndTime)
public object MarketChannelStaticModule(List<int> queryEmployeeList,string StartTime, string EndTime)
{
List<object> list = new List<object>();
var channelList = channelRepository.GetChannelListRepository(new RB_Channel_Extend() { });
var dataList = studentRepository.GetStudentChannelStaticRepository(new RB_Student_ViewModel()
{
StartTime = StartTime,
EndTime = EndTime
EndTime = EndTime,
CreateIds= queryEmployeeList
});
if (channelList != null && channelList.Count > 0)
{
......
......@@ -2853,7 +2853,7 @@ namespace Edu.WebApi.Controllers.User
{
qEmpIds = string.Join(",", empList);
}
var data = marketConsultantModule.MarketChannelStaticModule(startTime, endTime);
var data = marketConsultantModule.MarketChannelStaticModule(empList,startTime, endTime);
return ApiResult.Success(data: data);
}
#endregion
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment