|
|
@ -204,7 +204,7 @@ namespace BBWY.Server.API.Controllers |
|
|
|
/// <param name="request"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
[HttpPost] |
|
|
|
public JArray GetJDSopularizeReportFormBySkuLevel([FromBody]SyncJDPopularizeReportFormRequest request) |
|
|
|
public JArray GetJDSopularizeReportFormBySkuLevel([FromBody] SyncJDPopularizeReportFormRequest request) |
|
|
|
{ |
|
|
|
return platformSDKBusinessList.FirstOrDefault(p => p.Platform == request.Platform).GetJDSopularizeReportFormBySkuLevel(request); |
|
|
|
} |
|
|
@ -215,9 +215,31 @@ namespace BBWY.Server.API.Controllers |
|
|
|
/// <param name="request"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
[HttpPost] |
|
|
|
public JArray GetJDSopularizeReportFormByAdLevel([FromBody]SyncJDPopularizeReportFormRequest request) |
|
|
|
public JArray GetJDSopularizeReportFormByAdLevel([FromBody] SyncJDPopularizeReportFormRequest request) |
|
|
|
{ |
|
|
|
return platformSDKBusinessList.FirstOrDefault(p => p.Platform == request.Platform).GetJDSopularizeReportFormByAdLevel(request); |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 查询JD推广报表-计划维度
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="request"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
[HttpPost] |
|
|
|
public JArray GetJDSopularizeReportFormByCampaignLevel([FromBody] SyncJDPopularizeReportFormRequest request) |
|
|
|
{ |
|
|
|
return platformSDKBusinessList.FirstOrDefault(p => p.Platform == request.Platform).GetJDSopularizeReportFormByCampaignLevel(request); |
|
|
|
} |
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 查询JD推广报表-单元维度
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="request"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
[HttpPost] |
|
|
|
public JArray GetJDSopularizeReportFormByAdGroupLevel([FromBody] SyncJDPopularizeReportFormRequest request) |
|
|
|
{ |
|
|
|
return platformSDKBusinessList.FirstOrDefault(p => p.Platform == request.Platform).GetJDSopularizeReportFormByAdGroupLevel(request); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|