|
@@ -3,7 +3,10 @@ package com.persagy.apm.energy.report.common.service.impl;
|
|
|
import com.persagy.apm.common.model.dto.PoemsPuser;
|
|
|
import com.persagy.apm.common.response.PoemsFeignResponse;
|
|
|
import com.persagy.apm.energy.report.common.DataConstants;
|
|
|
+import com.persagy.apm.energy.report.common.dto.QueryAreaPlatformParamDTO;
|
|
|
import com.persagy.apm.energy.report.common.service.CommonService;
|
|
|
+import com.persagy.apm.energy.report.monthly.config.statisticsitems.model.StatisticItems;
|
|
|
+import com.persagy.apm.energy.report.monthly.detail.business.model.Platform;
|
|
|
import com.persagy.apm.energy.report.saasweb.model.dto.QueryProjectDTO;
|
|
|
import com.persagy.apm.energy.report.saasweb.model.vo.PoemsProjectVO;
|
|
|
import com.persagy.apm.energy.report.saasweb.service.impl.SaasWebClientWrapper;
|
|
@@ -24,7 +27,7 @@ public class CommonServiceImpl implements CommonService {
|
|
|
|
|
|
@Override
|
|
|
public List<String> getPjNameByPjId(List<String> pjIdList) {
|
|
|
- if(CollectionUtils.isEmpty(pjIdList)){
|
|
|
+ if (CollectionUtils.isEmpty(pjIdList)) {
|
|
|
return new ArrayList<>();
|
|
|
}
|
|
|
QueryProjectDTO queryProjectDTO = new QueryProjectDTO();
|
|
@@ -47,4 +50,10 @@ public class CommonServiceImpl implements CommonService {
|
|
|
}
|
|
|
return new ArrayList<>();
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Platform getPlatform(StatisticItems statisticItems, QueryAreaPlatformParamDTO queryAreaPlatformParamDTO) {
|
|
|
+ String serviceName = "I" + statisticItems.getItemCode() + statisticItems.getItemSource() + "WebService";
|
|
|
+ return null;
|
|
|
+ }
|
|
|
}
|