Prechádzať zdrojové kódy

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 rokov pred
rodič
commit
e6396b80e2

+ 2 - 0
src/main/java/com/persagy/apm/energy/report/common/DataConstants.java

@@ -16,4 +16,6 @@ public class DataConstants {
 
     public static final String ENV_PARENT_TYPE_ID = "Humiture";
 
+    public static final String SUCCESS = "success";
+
 }

+ 19 - 0
src/main/java/com/persagy/apm/energy/report/emsweather/service/EMSWeatherWebService.java

@@ -0,0 +1,19 @@
+package com.persagy.apm.energy.report.emsweather.service;
+
+import io.swagger.annotations.Api;
+
+import java.util.Date;
+
+@Api(value = "天气服务service接口")
+public interface EMSWeatherWebService {
+    /**
+     * 获取项目对应月的月平均温度值
+     *
+     * @param projectId  项目id
+     * @param reportDate 生成报告日期
+     * @author wch
+     * @version V1.0 2021/5/19 4:04 下午
+     */
+    Double getPjMonthAvgTemp(String projectId, Date reportDate);
+
+}

+ 62 - 0
src/main/java/com/persagy/apm/energy/report/emsweather/service/impl/EMSWeatherWebServiceImpl.java

@@ -0,0 +1,62 @@
+package com.persagy.apm.energy.report.emsweather.service.impl;
+
+import com.alibaba.fastjson.JSONObject;
+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.emsweather.service.EMSWeatherWebService;
+import org.apache.commons.collections.CollectionUtils;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.stereotype.Service;
+
+import java.util.Date;
+import java.util.List;
+import java.util.Map;
+
+@Service
+public class EMSWeatherWebServiceImpl implements EMSWeatherWebService {
+
+    @Value("${ems.weather.url}")
+    private String emsWeatherUrl;
+
+    @Override
+    public Double getPjMonthAvgTemp(String projectId, Date reportDate) {
+        Double result = null;
+        try {
+            Date startDate = DateUtils.getStartTimeOfDay(reportDate);
+            String startTime = DateUtils.date2Str(startDate, DateUtils.SDF_SECOND);
+            String endTime = DateUtils.date2Str(DateUtils.getMonthOff(startDate, 1), DateUtils.SDF_SECOND);
+            JSONObject paramObject = new JSONObject();
+            paramObject.put("projectId", projectId);
+            paramObject.put("startTime", startTime);
+            paramObject.put("endTime", endTime);
+            paramObject.put("dataType", "All");
+            String url = emsWeatherUrl + "/Spring/MVC/entrance/unifierJson/DayStaticData";
+            String response = HttpUtils.postJson(url, paramObject.toString());
+            JSONObject responseObject = JSONObject.parseObject(response);
+            if (DataConstants.SUCCESS.equals(responseObject.getString("result"))) {
+                List<Map> content = (List<Map>) responseObject.get("content");
+                if (CollectionUtils.isNotEmpty(content)) {
+                    Integer count = 0;
+                    Double allAvgTemp = 0.0;
+                    for (Map map : content) {
+                        Double avgTemp = DataUtils.parseDouble(map.get("avgTemp"));
+                        if (null == avgTemp) {
+                            continue;
+                        }
+                        allAvgTemp = allAvgTemp + avgTemp;
+                        count++;
+                    }
+                    if (count != 0) {
+                        result = allAvgTemp / count;
+                        return result;
+                    }
+                }
+            }
+        } catch (Exception e) {
+            e.printStackTrace();
+        }
+        return result;
+    }
+}