Commit 77790e6a authored by lilongyang's avatar lilongyang

1、解决变量层级健康等级划分页面下的风电/光伏分析变量运行监测数据趋势图按小时查询,由于ts时间与创建时间存在时间差,给的时间参数修改为截至时间往前推9分钟,确保查询出的时间是正确的

parent e0094785
......@@ -112,7 +112,7 @@ public class IdxBizFanHealthIndexServiceImpl extends BaseService<IdxBizFanHealth
endTime = endTime.concat(" 23:59:59");
} else if (startTime.length() == 13) {
startTime = startTime.concat(":00:00");
endTime = endTime.concat(":59:59");
endTime = endTime.concat(":50:59");
} else if (startTime.length() == 16) {
startTime = startTime.concat(":00");
endTime = endTime.concat(":59");
......
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