Browse Source

风机功率风速分析 接口

wangb 1 month ago
parent
commit
e26f0e5a14

+ 1 - 1
runeconomy-xk/src/main/java/com/gyee/runeconomy/controller/agc/AgcDeviateController.java

@@ -115,7 +115,7 @@ public class AgcDeviateController {
             List<Double> powerData = historyPowerDatas.stream().map(PointData::getPointValueInDouble).collect(Collectors.toList());
             spa.setActuatedPower(powerData);
             String powerCurveMonth = "glqxnh:" + date.month() + ":";
-            Set<String> keys = stringRedisTemplate.keys(powerCurveMonth + windturbineId);
+            Set<String> keys = stringRedisTemplate.keys(powerCurveMonth + wtId);
             Iterator<String> iterator = keys.iterator(); // 获取迭代器
             String firstKey = iterator.hasNext() ? iterator.next() : null;
             String yc = stringRedisTemplate.opsForValue().get(firstKey);