diff --git a/BBWY.Server.API/Controllers/PlatformSDKController.cs b/BBWY.Server.API/Controllers/PlatformSDKController.cs
index dc70060b..9b02d0c4 100644
--- a/BBWY.Server.API/Controllers/PlatformSDKController.cs
+++ b/BBWY.Server.API/Controllers/PlatformSDKController.cs
@@ -204,7 +204,7 @@ namespace BBWY.Server.API.Controllers
///
///
[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
///
///
[HttpPost]
- public JArray GetJDSopularizeReportFormByAdLevel([FromBody]SyncJDPopularizeReportFormRequest request)
+ public JArray GetJDSopularizeReportFormByAdLevel([FromBody] SyncJDPopularizeReportFormRequest request)
{
return platformSDKBusinessList.FirstOrDefault(p => p.Platform == request.Platform).GetJDSopularizeReportFormByAdLevel(request);
}
+
+ ///
+ /// 查询JD推广报表-计划维度
+ ///
+ ///
+ ///
+ [HttpPost]
+ public JArray GetJDSopularizeReportFormByCampaignLevel([FromBody] SyncJDPopularizeReportFormRequest request)
+ {
+ return platformSDKBusinessList.FirstOrDefault(p => p.Platform == request.Platform).GetJDSopularizeReportFormByCampaignLevel(request);
+ }
+
+ ///
+ /// 查询JD推广报表-单元维度
+ ///
+ ///
+ ///
+ [HttpPost]
+ public JArray GetJDSopularizeReportFormByAdGroupLevel([FromBody] SyncJDPopularizeReportFormRequest request)
+ {
+ return platformSDKBusinessList.FirstOrDefault(p => p.Platform == request.Platform).GetJDSopularizeReportFormByAdGroupLevel(request);
+ }
}
}