Преглед на файлове

Merge branch 'dev-v1.0.0-jd' of http://39.106.8.246:3003/apm/energy-report into dev-v1.0.0-jd

lixing преди 3 години
родител
ревизия
0ff9d6949f

+ 29 - 4
src/main/java/com/persagy/apm/energy/report/common/service/CommonService.java

@@ -6,6 +6,8 @@ import com.persagy.apm.energy.report.monthly.config.statisticsitems.model.Statis
 import com.persagy.apm.energy.report.monthly.detail.business.model.Platform;
 import com.persagy.apm.energy.report.monthly.detail.hotel.project.model.vo.HotelProjectAlarmDealInfo;
 import com.persagy.apm.energy.report.monthly.detail.hotel.project.model.vo.HotelProjectKpiItem;
+import com.persagy.apm.energy.report.monthly.detail.hotel.project.model.vo.HotelProjectMaintenanceGraph;
+import com.persagy.apm.energy.report.monthly.detail.hotel.project.model.vo.HotelProjectMaintenanceInfo;
 import io.swagger.annotations.Api;
 
 import java.util.Date;
@@ -32,7 +34,7 @@ public interface CommonService {
     /**
      * 获取酒店项目报警处理信息
      *
-     * @param projectId 项目id
+     * @param projectId  项目id
      * @param reportDate 报告月
      * @return 酒店项目报警处理信息
      */
@@ -41,12 +43,35 @@ public interface CommonService {
     /**
      * 获取酒店项目环境指标条目信息
      *
-     * @param projectId 项目id
-     * @param reportDate 报告月
+     * @param projectId     项目id
+     * @param reportDate    报告月
      * @param projectIdList 当前报告类型下的所有项目id列表
-     * @param function  function信息
+     * @param function      function信息
      * @return 酒店项目环境指标条目信息
      */
     HotelProjectKpiItem getHotelProjectKpiItem(String projectId, Date reportDate, List<String> projectIdList, Function function);
 
+    /**
+     * 获取酒店平台数据质量信息
+     *
+     * @param userId     用户id
+     * @param projectId  项目id
+     * @param reportDate 报告月
+     * @param function   function信息
+     * @return 酒店项目环境指标条目信息
+     */
+    HotelProjectMaintenanceGraph getHotelProjectMaintenanceGraph(String userId, String projectId, Date reportDate, Function function);
+
+    /**
+     * 获取酒店项目维护信息
+     *
+     * @param userId        用户id
+     * @param projectId     项目id
+     * @param reportDate    报告月
+     * @param functionList  function信息列表
+     * @param projectIdList 当前报告类型下的所有项目id列表
+     * @return 酒店项目环境指标条目信息
+     */
+    HotelProjectMaintenanceInfo getHotelProjectMaintenanceInfo(String userId, String projectId, Date reportDate, List<Function> functionList, List<String> projectIdList);
+
 }

+ 103 - 1
src/main/java/com/persagy/apm/energy/report/common/service/impl/CommonServiceImpl.java

@@ -12,19 +12,30 @@ import com.persagy.apm.energy.report.common.utils.SpringContextHolder;
 import com.persagy.apm.energy.report.common.vo.PlatformAreaInfoVO;
 import com.persagy.apm.energy.report.environment.model.dto.BatchQueryEnvListByParamDTO;
 import com.persagy.apm.energy.report.environment.service.IEnvironmentWebService;
+import com.persagy.apm.energy.report.iotdataanalysis.model.AlarmInfoVo;
+import com.persagy.apm.energy.report.iotdataanalysis.model.CountAndDayRateDataVo;
+import com.persagy.apm.energy.report.iotdataanalysis.service.IDataAnalysisWebService;
 import com.persagy.apm.energy.report.monthly.config.function.model.Function;
 import com.persagy.apm.energy.report.monthly.config.statisticsitems.model.StatisticItems;
+import com.persagy.apm.energy.report.monthly.config.statisticsitems.model.dto.QueryStatisticItemsDTO;
+import com.persagy.apm.energy.report.monthly.config.statisticsitems.service.IStatisticItemsService;
 import com.persagy.apm.energy.report.monthly.config.type.constant.enums.BelongTypeEnum;
 import com.persagy.apm.energy.report.monthly.detail.business.model.Platform;
+import com.persagy.apm.energy.report.monthly.detail.common.model.vo.DateGraphItemVO;
 import com.persagy.apm.energy.report.monthly.detail.hotel.project.model.vo.HotelProjectAlarmDealInfo;
 import com.persagy.apm.energy.report.monthly.detail.hotel.project.model.vo.HotelProjectKpiItem;
+import com.persagy.apm.energy.report.monthly.detail.hotel.project.model.vo.HotelProjectMaintenanceGraph;
+import com.persagy.apm.energy.report.monthly.detail.hotel.project.model.vo.HotelProjectMaintenanceInfo;
 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.model.vo.ReportProjectVO;
+import com.persagy.apm.energy.report.saasweb.service.ISaasWebService;
 import com.persagy.apm.energy.report.saasweb.service.impl.SaasWebClientWrapper;
 import com.persagy.apm.energy.report.workorder.service.IWorkOrderWebService;
 import io.swagger.annotations.Api;
 import lombok.extern.slf4j.Slf4j;
 import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
 import org.springframework.stereotype.Service;
 import org.springframework.util.CollectionUtils;
 import org.springframework.util.StringUtils;
@@ -48,6 +59,18 @@ public class CommonServiceImpl implements CommonService {
     @Autowired
     IEnvironmentWebService iEnvironmentWebService;
 
+    @Autowired
+    IDataAnalysisWebService iDataAnalysisWebService;
+
+    @Value("${group.code}")
+    private String groupCode;
+
+    @Autowired
+    IStatisticItemsService iStatisticItemsService;
+
+    @Autowired
+    ISaasWebService saasWebService;
+
     @Override
     public List<String> getPjNameByPjId(List<String> pjIdList) {
         if (CollectionUtils.isEmpty(pjIdList)) {
@@ -112,6 +135,9 @@ public class CommonServiceImpl implements CommonService {
         hotelProjectAlarmDealInfo.setHandledCount(dealCount);
         hotelProjectAlarmDealInfo.setHandledPercent(completeRate);
         hotelProjectAlarmDealInfo.setTotalCount(workCount);
+        // 获取项目信息
+        ReportProjectVO reportProjectInfo = saasWebService.getReportProjectInfo(projectId);
+        hotelProjectAlarmDealInfo.setProjectName(null == reportProjectInfo ? "" : reportProjectInfo.getProjectName());
         return hotelProjectAlarmDealInfo;
     }
 
@@ -135,7 +161,7 @@ public class CommonServiceImpl implements CommonService {
             batchQueryEnvListByParamDTO.setEndTime(endTime);
             List<HotelProjectKpiItem> hotelProjectKpiItemList = iEnvironmentWebService.getPjEnvRateInfoMap(batchQueryEnvListByParamDTO);
             Map<String, Integer> sortMap = new HashMap<>();
-            sortMap.put("controlRates", 1);
+            sortMap.put("controlRates", -1);
             DataUtils.sort(hotelProjectKpiItemList, sortMap);
             for (int i = 0; i < hotelProjectKpiItemList.size(); i++) {
                 HotelProjectKpiItem hotelProjectKpiItem = hotelProjectKpiItemList.get(i);
@@ -143,6 +169,7 @@ public class CommonServiceImpl implements CommonService {
                     continue;
                 }
                 hotelProjectKpiItem.setRankWithinClimateZone(i + 1);
+                hotelProjectKpiItem.setName(function.getName());
                 return hotelProjectKpiItem;
             }
         } catch (Exception e) {
@@ -151,4 +178,79 @@ public class CommonServiceImpl implements CommonService {
         return new HotelProjectKpiItem();
     }
 
+    @Override
+    public HotelProjectMaintenanceGraph getHotelProjectMaintenanceGraph(String userId, String projectId, Date reportDate, Function function) {
+        if (StringUtils.isEmpty(projectId) || null == reportDate || null == function || StringUtils.isEmpty(function.getItemId())) {
+            return new HotelProjectMaintenanceGraph();
+        }
+        HotelProjectMaintenanceGraph hotelProjectMaintenanceGraph = new HotelProjectMaintenanceGraph();
+        try {
+            String userCode = DataConstants.USER_ID;
+            if (!StringUtils.isEmpty(userId)) {
+                userCode = userId;
+            }
+            String[] itemIdList = function.getItemId().split("_");
+            String itemId = itemIdList[0];
+            String itemStandardCode = itemIdList[1];
+            String targetCode = iDataAnalysisWebService.getTargetCode(userCode, groupCode, itemId);
+            if (null == targetCode) {
+                log.info("根据itemId:" + itemId + "未获取到数据质量配置信息");
+                return new HotelProjectMaintenanceGraph();
+            }
+            CountAndDayRateDataVo dataVo = iDataAnalysisWebService.getIotDataAnalysisData(userCode, groupCode, projectId, reportDate, targetCode);
+            List<DateGraphItemVO> dateGraphItemVOList = new ArrayList<>();
+            TreeMap<Date, Double> dataMap = dataVo.getDataMap();
+            if (null != dataMap && dataMap.size() != 0) {
+                for (Map.Entry<Date, Double> entry : dataMap.entrySet()) {
+                    DateGraphItemVO dateGraphItemVO = new DateGraphItemVO();
+                    dateGraphItemVO.setDate(entry.getKey());
+                    dateGraphItemVO.setValue(entry.getValue());
+                    dateGraphItemVOList.add(dateGraphItemVO);
+                }
+            }
+            hotelProjectMaintenanceGraph.setMonthlyValue(dataVo.getCountRate());
+            String standardValue = null;
+            QueryStatisticItemsDTO queryStatisticItemsDTO = new QueryStatisticItemsDTO();
+            queryStatisticItemsDTO.setItemCode(itemStandardCode);
+            List<StatisticItems> statisticItemList = iStatisticItemsService.queryStatisticItemsList(queryStatisticItemsDTO);
+            if (!CollectionUtils.isEmpty(statisticItemList)) {
+                StatisticItems statisticItems = statisticItemList.get(0);
+                standardValue = statisticItems.getStandardValue();
+            }
+            hotelProjectMaintenanceGraph.setStandardValue(DataUtils.parseDouble(standardValue));
+            hotelProjectMaintenanceGraph.setName(function.getName());
+            hotelProjectMaintenanceGraph.setValue(dateGraphItemVOList);
+        } catch (Exception e) {
+            log.error("获取HotelProjectMaintenanceGraph的" + function.getItemId() + "数据失败:", e);
+        }
+        return hotelProjectMaintenanceGraph;
+    }
+
+    @Override
+    public HotelProjectMaintenanceInfo getHotelProjectMaintenanceInfo(String userId, String projectId, Date reportDate, List<Function> functionList, List<String> projectIdList) {
+        HotelProjectMaintenanceInfo hotelProjectMaintenanceInfo = new HotelProjectMaintenanceInfo();
+        List<HotelProjectMaintenanceGraph> hotelProjectMaintenanceGraphList = new ArrayList<>();
+        if (!CollectionUtils.isEmpty(functionList)) {
+            for (Function function : functionList) {
+                hotelProjectMaintenanceGraphList.add(getHotelProjectMaintenanceGraph(userId, projectId, reportDate, function));
+            }
+        }
+        List<AlarmInfoVo> alarmInfoVoList = iDataAnalysisWebService.getAlarmInfoVo(userId, groupCode, projectIdList, reportDate);
+        Map<String, Integer> sortMap = new HashMap<>();
+        sortMap.put("alarmCount", -1);
+        DataUtils.sort(alarmInfoVoList, sortMap);
+        for (int i = 0; i < alarmInfoVoList.size(); i++) {
+            AlarmInfoVo vo = alarmInfoVoList.get(i);
+            if (!vo.getProjectId().equals(projectId)) {
+                continue;
+            }
+            hotelProjectMaintenanceInfo.setBreakCount(vo.getAlarmCount());
+            hotelProjectMaintenanceInfo.setBreakLostTime(vo.getTotalDuration());
+            hotelProjectMaintenanceInfo.setRankWithinClimateZone(i + 1);
+        }
+        hotelProjectMaintenanceInfo.setProjectNumWithinClimateZone(projectIdList.size());
+        hotelProjectMaintenanceInfo.setGraphs(hotelProjectMaintenanceGraphList);
+        return hotelProjectMaintenanceInfo;
+    }
+
 }

+ 12 - 0
src/main/java/com/persagy/apm/energy/report/common/utils/DateUtils.java

@@ -206,6 +206,18 @@ public class DateUtils {
         return Date.from(lastYearFirstDay.atStartOfDay(zoneId).toInstant());
     }
 
+    public static Double getDateDuration(Date beginDate, Date endDate) {
+        long nh = 1000 * 60 * 60;
+        long diff = endDate.getTime() - beginDate.getTime();
+        return (double) diff / nh;
+    }
+
+    public static Double getDateDuration(long beginTime, long endTime) {
+        long nh = 1000 * 60 * 60;
+        long diff = endTime - beginTime;
+        return (double) diff / nh;
+    }
+
     /**
      * date转换为localDate
      *

+ 16 - 0
src/main/java/com/persagy/apm/energy/report/iotdataanalysis/model/AlarmInfoVo.java

@@ -0,0 +1,16 @@
+package com.persagy.apm.energy.report.iotdataanalysis.model;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+@Data
+@ApiModel(value = "数据质量服务中报警信息")
+public class AlarmInfoVo {
+    @ApiModelProperty("项目id")
+    private String projectId;
+    @ApiModelProperty("报警次数")
+    private Integer alarmCount;
+    @ApiModelProperty("报警总时长")
+    private Double totalDuration;
+}

+ 19 - 0
src/main/java/com/persagy/apm/energy/report/iotdataanalysis/model/CountAndDayRateDataVo.java

@@ -0,0 +1,19 @@
+package com.persagy.apm.energy.report.iotdataanalysis.model;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+import java.util.Date;
+import java.util.List;
+import java.util.Map;
+import java.util.TreeMap;
+
+@Data
+@ApiModel(value = "变损或总支不平衡率的总率和每天的率信息")
+public class CountAndDayRateDataVo {
+    @ApiModelProperty("总率")
+    private Double countRate;
+    @ApiModelProperty("值")
+    private TreeMap<Date, Double> dataMap;
+}

+ 29 - 13
src/main/java/com/persagy/apm/energy/report/iotdataanalysis/service/IDataAnalysisWebService.java

@@ -1,8 +1,7 @@
 package com.persagy.apm.energy.report.iotdataanalysis.service;
 
-import com.persagy.apm.energy.report.common.dto.QueryAreaPlatformParamDTO;
-import com.persagy.apm.energy.report.common.dto.QueryPjPlatformParamDTO;
-import com.persagy.apm.energy.report.monthly.detail.business.model.Platform;
+import com.persagy.apm.energy.report.iotdataanalysis.model.AlarmInfoVo;
+import com.persagy.apm.energy.report.iotdataanalysis.model.CountAndDayRateDataVo;
 import io.swagger.annotations.Api;
 
 import java.util.Date;
@@ -10,21 +9,38 @@ import java.util.List;
 
 @Api(value = "数据质量服务service接口")
 public interface IDataAnalysisWebService {
+
+    /**
+     * 根据配置的function获取数据质量服务的配置码
+     *
+     * @param userId         用户id
+     * @param groupCode      集团编码
+     * @param functionItemId function配置项
+     * @return
+     */
+    String getTargetCode(String userId, String groupCode, String functionItemId);
+
     /**
-     * 获取项目能源管理平台运维变损和总支不平衡率信息
+     * 获取某种配置的总计算率和天的计算率
      *
-     * @param queryPjPlatformParamDTO 查询条件对象
-     * @author wch
-     * @version V1.0 2021/5/19 4:04 下午
+     * @param userId     用户id
+     * @param groupCode  集团编码
+     * @param projectId  项目id
+     * @param reportDate 生成报告月
+     * @param targetCode 配置码
+     * @return
      */
-    void getPjbianSunAndzongZhiRate(QueryPjPlatformParamDTO queryPjPlatformParamDTO, Platform bianSunPlatform, Platform zongZhiPlatform);
+    CountAndDayRateDataVo getIotDataAnalysisData(String userId, String groupCode, String projectId, Date reportDate, String targetCode);
 
     /**
-     * 获取大区能源管理平台运维变损和总支不平衡率信息
+     * 获取报警信息
      *
-     * @param queryAreaPlatformParamDTO 查询条件对象
-     * @author wch
-     * @version V1.0 2021/5/19 4:04 下午
+     * @param userId        用户id
+     * @param groupCode     集团编码
+     * @param projectIdList 项目id列表
+     * @param reportDate    生成报告月
+     * @return
      */
-    void getAreabianSunAndzongZhiRate(QueryAreaPlatformParamDTO queryAreaPlatformParamDTO, Platform bianSunPlatform, Platform zongZhiPlatform);
+    List<AlarmInfoVo> getAlarmInfoVo(String userId, String groupCode, List<String> projectIdList, Date reportDate);
+
 }

+ 111 - 88
src/main/java/com/persagy/apm/energy/report/iotdataanalysis/service/impl/IDataAnalysisWebServiceImpl.java

@@ -1,133 +1,156 @@
 package com.persagy.apm.energy.report.iotdataanalysis.service.impl;
 
 import com.alibaba.fastjson.JSONObject;
-import com.persagy.apm.energy.report.common.dto.QueryAreaPlatformParamDTO;
-import com.persagy.apm.energy.report.common.dto.QueryPjPlatformParamDTO;
-import com.persagy.apm.energy.report.common.service.CommonService;
+import com.persagy.apm.energy.report.common.DataConstants;
 import com.persagy.apm.energy.report.common.utils.DataUtils;
 import com.persagy.apm.energy.report.common.utils.DateUtils;
 import com.persagy.apm.energy.report.common.utils.HttpUtils;
+import com.persagy.apm.energy.report.iotdataanalysis.model.AlarmInfoVo;
+import com.persagy.apm.energy.report.iotdataanalysis.model.CountAndDayRateDataVo;
 import com.persagy.apm.energy.report.iotdataanalysis.service.IDataAnalysisWebService;
-import com.persagy.apm.energy.report.monthly.detail.business.model.Platform;
+import lombok.extern.slf4j.Slf4j;
 import org.apache.commons.collections.CollectionUtils;
 import org.springframework.beans.factory.annotation.Value;
 import org.springframework.stereotype.Service;
+import org.springframework.util.StringUtils;
 
-import javax.annotation.Resource;
 import java.util.*;
-import java.util.stream.Collectors;
+
 @Service
+@Slf4j
 public class IDataAnalysisWebServiceImpl implements IDataAnalysisWebService {
 
-//    @Value("${iot.data.analysis.url}")
+    @Value("${iot.data.analysis.url}")
     private String iotDataAnalysisUrl;
 
-    @Resource
-    private CommonService commonService;
-
-    public final static String SUCCESS = "success";
+    @Value("${iot.data.analysis.alarmtype}")
+    private String alarmTypeStr;
 
     @Override
-    public void getPjbianSunAndzongZhiRate(QueryPjPlatformParamDTO queryPjPlatformParamDTO, Platform bianSunPlatform, Platform zongZhiPlatform) {
-        TreeMap<Date, Double> biansun_date_rateMap = new TreeMap<>();
-        TreeMap<Date, Double> zongzhi_date_rateMap = new TreeMap<>();
-        Date reportDate = queryPjPlatformParamDTO.getReportDate();
-        Date startDate = DateUtils.getFirstDayOfYear(reportDate);
-        while (startDate.before(DateUtils.getMonthOff(reportDate, 1))) {
-            Double bianSunRate = null;
-            Double zongZhiRate = null;
-            getBianSunAndZongZhiRate(queryPjPlatformParamDTO.getUserId(), queryPjPlatformParamDTO.getGroupCode(), queryPjPlatformParamDTO.getProjectId(), bianSunRate, zongZhiRate, startDate);
-            biansun_date_rateMap.put(startDate, bianSunRate);
-            zongzhi_date_rateMap.put(startDate, zongZhiRate);
-            startDate = DateUtils.getMonthOff(startDate, 1);
+    public String getTargetCode(String userId, String groupCode, String functionItemId) {
+        try {
+            JSONObject paramObject = new JSONObject();
+            paramObject.put("userId", userId);
+            paramObject.put("groupCode", groupCode);
+            String url = iotDataAnalysisUrl + "/setting/alarm/show/queryAll";
+            String response = HttpUtils.postJson(url, paramObject.toString());
+            JSONObject responseObject = JSONObject.parseObject(response);
+            if (DataConstants.SUCCESS.equals(responseObject.getString("respMsg"))) {
+                List<Map> content = (List<Map>) responseObject.get("content");
+                if (CollectionUtils.isNotEmpty(content)) {
+                    for (Map map : content) {
+                        String targetCode = (String) map.get("targetCode");
+                        if (targetCode.contains(functionItemId)) {
+                            return targetCode;
+                        }
+                    }
+                }
+            }
+        } catch (Exception e) {
+            log.error("获取数据质量基本配置信息异常:", e);
         }
-        List<Double> bianSunMonthlySummaries = biansun_date_rateMap.values().stream().collect(Collectors.toList());
-        List<Double> zongZhiMonthlySummaries = zongzhi_date_rateMap.values().stream().collect(Collectors.toList());
-        bianSunPlatform.setMonthlySummaries(bianSunMonthlySummaries);
-        zongZhiPlatform.setMonthlySummaries(zongZhiMonthlySummaries);
+        return null;
     }
 
-    private void getBianSunAndZongZhiRate(String userId, String groupCode, String projectId, Double bianSunRate, Double zongZhiRate, Date reportDate) {
+    @Override
+    public CountAndDayRateDataVo getIotDataAnalysisData(String userId, String groupCode, String projectId, Date reportDate, String targetCode) {
+        CountAndDayRateDataVo vo = new CountAndDayRateDataVo();
         try {
             JSONObject paramObject = new JSONObject();
             paramObject.put("userId", userId);
             paramObject.put("groupCode", groupCode);
-            List<String> pjIdList = new ArrayList<>();
-            pjIdList.add(projectId);
-            paramObject.put("projectIdList", pjIdList.toString());
+            paramObject.put("projectId", projectId);
             Date startTime = DateUtils.getStartTimeOfDay(reportDate);
             Date endTime = DateUtils.getMonthOff(startTime, 1);
             paramObject.put("alarmStartTime", startTime);
             paramObject.put("alarmEndTime", endTime);
-            String url = iotDataAnalysisUrl + "/alarm/show/view/queryList";
+            paramObject.put("targetCode", targetCode);
+            String url = iotDataAnalysisUrl + "/alarm/show/detail/queryList";
             String response = HttpUtils.postJson(url, paramObject.toString());
             JSONObject responseObject = JSONObject.parseObject(response);
-            if (SUCCESS.equals(responseObject.getString("respMsg"))) {
-                List<Map> content = (List<Map>) responseObject.get("content");
-                if (CollectionUtils.isNotEmpty(content)) {
-                    Map data = content.get(0);
-                    bianSunRate = DataUtils.parseDouble(data.get("bianSunRate"));
-                    zongZhiRate = DataUtils.parseDouble(data.get("zongZhiRate"));
+            if (DataConstants.SUCCESS.equals(responseObject.getString("respMsg"))) {
+                Map data = (Map) responseObject.get("content");
+                vo.setCountRate(DataUtils.parseDouble(data.get("rate")));
+                List<Map> dataList = (List<Map>) data.get("list");
+                TreeMap<Date, Double> dataMap = new TreeMap<>();
+                if (CollectionUtils.isNotEmpty(dataList)) {
+                    for (Map map : dataList) {
+                        Double rate = DataUtils.parseDouble(map.get("rate"));
+                        long dataLong = (long) map.get("dataTime");
+                        Date date = new Date(dataLong);
+                        dataMap.put(date, rate);
+                    }
                 }
+                vo.setDataMap(dataMap);
             }
         } catch (Exception e) {
-            e.printStackTrace();
+            log.error("获取数据质量看板信息异常:", e);
         }
+        return vo;
     }
 
     @Override
-    public void getAreabianSunAndzongZhiRate(QueryAreaPlatformParamDTO queryAreaPlatformParamDTO, Platform bianSunPlatform, Platform zongZhiPlatform) {
-        // 变损合格标准
-        Double bianSunStandardValue = bianSunPlatform.getStandardValue();
-        // 变损校验规则
-        String bianSunQualifyFormula = bianSunPlatform.getQualifyFormula();
-        // 变损达标数量
-        Integer bianSunSatisfiedCount = 0;
-        // 变损未达标数量
-        Integer bianSunUnsatisfiedCount = 0;
-        // 变损未达标项目id列表
-        List<String> bianSunUnsatisfiedPjIdList = new ArrayList<>();
-        // 总支不平衡合格标准
-        Double zongZhiStandardValue = bianSunPlatform.getStandardValue();
-        // 总支不平衡校验规则
-        String zongZhiQualifyFormula = bianSunPlatform.getQualifyFormula();
-        // 总支不平衡达标数量
-        Integer zongZhiSatisfiedCount = 0;
-        // 总支不平衡未达标数量
-        Integer zongZhiUnsatisfiedCount = 0;
-        // 总支不平衡未达标项目id列表
-        List<String> zongZhiUnsatisfiedPjIdList = new ArrayList<>();
-        for (String pjId : queryAreaPlatformParamDTO.getProjectIdList()) {
-            Double bianSunRate = null;
-            Double zongZhiRate = null;
-            getBianSunAndZongZhiRate(queryAreaPlatformParamDTO.getUserId(), queryAreaPlatformParamDTO.getGroupCode(), pjId, bianSunRate, zongZhiRate, queryAreaPlatformParamDTO.getReportDate());
-            if (null != bianSunRate && null != bianSunStandardValue) {
-                if (DataUtils.getQualifyResult(bianSunStandardValue, bianSunQualifyFormula, bianSunRate) == 0.0) {
-                    bianSunUnsatisfiedCount++;
-                    bianSunUnsatisfiedPjIdList.add(pjId);
-                } else {
-                    bianSunSatisfiedCount++;
-                }
-            }
-            if (null != zongZhiRate && null != zongZhiStandardValue) {
-                if (DataUtils.getQualifyResult(zongZhiStandardValue, zongZhiQualifyFormula, zongZhiRate) == 0.0) {
-                    zongZhiUnsatisfiedCount++;
-                    zongZhiUnsatisfiedPjIdList.add(pjId);
-                } else {
-                    zongZhiSatisfiedCount++;
+    public List<AlarmInfoVo> getAlarmInfoVo(String userId, String groupCode, List<String> projectIdList, Date reportDate) {
+        List<AlarmInfoVo> resultList = new ArrayList<>();
+        try {
+            JSONObject paramObject = new JSONObject();
+            paramObject.put("groupCode", groupCode);
+            paramObject.put("projectIds", projectIdList);
+            Date startTime = DateUtils.getStartTimeOfDay(reportDate);
+            Date endTime = DateUtils.getMonthOff(startTime, 1);
+            paramObject.put("alarmStartTime", startTime.getTime());
+            paramObject.put("alarmEndTime", endTime.getTime());
+            List<String> alarmTypeList = JSONObject.parseArray(alarmTypeStr, String.class);
+            paramObject.put("alarmType", alarmTypeList);
+            paramObject.put("alarmStartTimeDesc", true);
+            String url = iotDataAnalysisUrl + "/alarm/alarmList";
+            String response = HttpUtils.postJson(url, paramObject.toString());
+            JSONObject responseObject = JSONObject.parseObject(response);
+            if (DataConstants.SUCCESS.equals(responseObject.getString("respMsg"))) {
+                List<Map> content = (List<Map>) responseObject.get("content");
+                if (CollectionUtils.isNotEmpty(content)) {
+                    Map<String, Integer> pjId_alarmCountMap = new HashMap<>();
+                    Map<String, Double> pjId_alarmDurationMap = new HashMap<>();
+                    for (Map map : content) {
+                        String pjId = (String) map.get("projectId");
+                        Long alarmBeginTime = (Long) map.get("alarmStartTime");
+                        if (StringUtils.isEmpty(pjId) || null == alarmBeginTime) {
+                            continue;
+                        }
+                        Long alarmEndTime = (Long) map.get("alarmEndTime");
+                        if (null == alarmEndTime) {
+                            alarmEndTime = endTime.getTime();
+                        }
+                        Double duration = DateUtils.getDateDuration(alarmBeginTime, alarmEndTime);
+                        Integer alarmCount = pjId_alarmCountMap.get(pjId);
+                        if (null == alarmCount) {
+                            alarmCount = 0;
+                        }
+                        alarmCount++;
+                        pjId_alarmCountMap.put(pjId, alarmCount);
+                        Double alarmDuration = pjId_alarmDurationMap.get(pjId);
+                        if (null == alarmDuration) {
+                            alarmDuration = 0.0;
+                        }
+                        alarmDuration = alarmDuration + duration;
+                        pjId_alarmDurationMap.put(pjId, alarmDuration);
+                    }
+                    if (pjId_alarmCountMap.size() != 0) {
+                        for (Map.Entry<String, Integer> entry : pjId_alarmCountMap.entrySet()) {
+                            AlarmInfoVo alarmInfoVo = new AlarmInfoVo();
+                            alarmInfoVo.setProjectId(entry.getKey());
+                            alarmInfoVo.setAlarmCount(entry.getValue());
+                            alarmInfoVo.setTotalDuration(pjId_alarmDurationMap.get(entry.getKey()));
+                            resultList.add(alarmInfoVo);
+                        }
+                    }
                 }
             }
+        } catch (Exception e) {
+            log.error("获取数据质量报警数据异常:", e);
         }
-        // 根据未达标项目id列表获取不达标项目名称
-        List<String> bianSunPjNameList = commonService.getPjNameByPjId(bianSunUnsatisfiedPjIdList);
-        bianSunPlatform.setSatisfiedCount(bianSunSatisfiedCount);
-        bianSunPlatform.setUnsatisfiedCount(bianSunUnsatisfiedCount);
-        bianSunPlatform.setUnsatisfiedProjects(bianSunPjNameList);
-        // 根据未达标项目id列表获取不达标项目名称
-        List<String> zongZhiPjNameList = commonService.getPjNameByPjId(zongZhiUnsatisfiedPjIdList);
-        zongZhiPlatform.setSatisfiedCount(zongZhiSatisfiedCount);
-        zongZhiPlatform.setUnsatisfiedCount(zongZhiUnsatisfiedCount);
-        zongZhiPlatform.setUnsatisfiedProjects(zongZhiPjNameList);
+        return resultList;
     }
 
+
 }

+ 19 - 0
src/main/java/com/persagy/apm/energy/report/manualfilling/service/impl/IEnergyItemDataServiceImpl.java

@@ -2,6 +2,7 @@ package com.persagy.apm.energy.report.manualfilling.service.impl;
 
 import com.persagy.apm.common.context.poems.PoemsContext;
 import com.persagy.apm.energy.report.common.DataConstants;
+import com.persagy.apm.energy.report.common.service.CommonService;
 import com.persagy.apm.energy.report.common.utils.DateUtils;
 import com.persagy.apm.energy.report.manualfilling.model.dto.QueryEnergyItemDataDTO;
 import com.persagy.apm.energy.report.manualfilling.model.dto.SaveEnergyItemDataDTO;
@@ -12,6 +13,8 @@ import com.persagy.apm.energy.report.monthly.config.function.model.Function;
 import com.persagy.apm.energy.report.monthly.config.function.model.dto.QueryFunctionDTO;
 import com.persagy.apm.energy.report.monthly.config.function.service.IFunctionService;
 import com.persagy.apm.energy.report.monthly.config.type.constant.enums.BuildingTypeEnum;
+import com.persagy.apm.energy.report.monthly.detail.hotel.project.model.vo.HotelProjectMaintenanceGraph;
+import com.persagy.apm.energy.report.monthly.detail.hotel.project.model.vo.HotelProjectMaintenanceInfo;
 import com.persagy.apm.energy.report.monthly.functionvalue.model.FunctionValue;
 import com.persagy.apm.energy.report.monthly.functionvalue.model.dto.BatchDeleteFunctionValueDTO;
 import com.persagy.apm.energy.report.monthly.functionvalue.model.dto.QueryFunctionValueDTO;
@@ -44,9 +47,25 @@ public class IEnergyItemDataServiceImpl implements IEnergyItemDataService {
     @Value("${group.code}")
     private String groupCode;
 
+    @Autowired
+    CommonService commonService;
+
     @Override
     public List<EnergyItemInfoVo> queryEnergyItemDataList(QueryEnergyItemDataDTO queryEnergyItemDataDTO) {
         try {
+            Function f = new Function();
+            f.setItemId("bianSun_bianSunRate");
+            f.setName("变损");
+            Function ff = new Function();
+            ff.setItemId("zongZhi_zongZhiRate");
+            ff.setName("总支不平衡率");
+            List<Function> list = new ArrayList<>();
+            list.add(f);
+            list.add(ff);
+            List<String> pjList = new ArrayList<>();
+            pjList.add("Pj4403050002");
+            pjList.add("Pj1101080259");
+            HotelProjectMaintenanceInfo into =commonService.getHotelProjectMaintenanceInfo("4510f509ed0746afbe26ab5377ce7e91","Pj4403050002",DateUtils.str2Date("2021-06-01 00:00:00",DateUtils.SDF_SECOND),list,pjList);
             PoemsContext.setContext(DataConstants.USER_ID, DataConstants.LOGIN_DEVICE, DataConstants.PD);
             ReportProjectVO projectVO = iSaasWebService.getReportProjectInfo(queryEnergyItemDataDTO.getProjectId());
             if (null == projectVO || StringUtils.isEmpty(projectVO.getFunctionType())) {

+ 4 - 0
src/main/java/com/persagy/apm/energy/report/monthly/config/function/model/Function.java

@@ -39,6 +39,9 @@ public class Function extends AuditableEntity<Function> implements Serializable
     @ApiModelProperty("分项id")
     private String itemId;
 
+    @ApiModelProperty("function名称")
+    private String name;
+
 
     public static String PROP_GROUP_CODE = "group_code";
     public static String PROP_ENERGY_TYPE = "energy_type";
@@ -46,5 +49,6 @@ public class Function extends AuditableEntity<Function> implements Serializable
     public static String PROP_FUNCTION_TYPE = "function_type";
     public static String PROP_MODEL_CODE = "model_code";
     public static String PROP_ITEM_ID = "item_id";
+    public static String PROP_NAME = "name";
 
 }

+ 1 - 1
src/main/java/com/persagy/apm/energy/report/monthly/detail/hotel/project/model/vo/HotelProjectKpiItem.java

@@ -20,7 +20,7 @@ import java.util.List;
 @JsonInclude(JsonInclude.Include.NON_NULL)
 public class HotelProjectKpiItem extends HotelRankVO {
     @ApiModelProperty(value = "名称")
-    private Double name;
+    private String name;
 
     @ApiModelProperty(value = "达标率")
     private Double controlRates;

+ 1 - 1
src/main/java/com/persagy/apm/energy/report/monthly/detail/hotel/project/model/vo/HotelProjectMaintenanceInfo.java

@@ -20,7 +20,7 @@ import java.util.List;
 @JsonInclude(JsonInclude.Include.NON_NULL)
 public class HotelProjectMaintenanceInfo extends HotelRankVO {
     @ApiModelProperty(value = "数据断线次数")
-    private Double breakCount;
+    private Integer breakCount;
     @ApiModelProperty(value = "数据中断时长")
     private Double breakLostTime;
     @ApiModelProperty(value = "图表信息")