Commit b2360eb6 authored by caotao's avatar caotao

1.大屏监盘全国运行指标数据接口数据源重新调整。

2.大屏监盘区域运行指标数据接口数据源重新调整。
parent b188f137
...@@ -132,6 +132,7 @@ public class CommonConstans { ...@@ -132,6 +132,7 @@ public class CommonConstans {
public static final String YEAR_GEN_HOURS = "年利用小时数"; public static final String YEAR_GEN_HOURS = "年利用小时数";
public static final String WIND_SPEED_THIRTY_SECONDS = "30秒平均风速"; public static final String WIND_SPEED_THIRTY_SECONDS = "30秒平均风速";
public static final String TOTAL_RADIATION = "辐照度"; public static final String TOTAL_RADIATION = "辐照度";
public static final String TOTAL_RADIATION_SUM = "累计辐照度";
public static final String ACTIVE_POWER = "有功功率"; public static final String ACTIVE_POWER = "有功功率";
......
...@@ -117,7 +117,7 @@ public class MonitoringServiceImpl { ...@@ -117,7 +117,7 @@ public class MonitoringServiceImpl {
map.put("value", value + "m/s"); map.put("value", value + "m/s");
} else { } else {
value = String.format("%.2f", value = String.format("%.2f",
coreCommonService.getAverageOfByPointName(coreValuesDtoList, "WTX-801_25_WTX-801_总辐射")); coreCommonService.getAverageOfByPointName(coreValuesDtoList, CommonConstans.TOTAL_RADIATION));
map.put("name", "风速/辐照度"); map.put("name", "风速/辐照度");
map.put("value", value + "W/㎡"); map.put("value", value + "W/㎡");
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment