Commit d27ca50e authored by hanbing's avatar hanbing

[update] 新信号评价-运行评价-修复下标越界异常

parent e2470aec
......@@ -469,6 +469,9 @@ public class RunningEvaluateServiceImpl implements RunningEvaluateService {
}
private boolean isDataValid(List<MetricHistDTO> metricHistDTOList) {
if (CollectionUtil.isEmpty(metricHistDTOList)) {
return false;
}
MetricHistDTO dto = metricHistDTOList.get(0);
Integer status = dto.getStatus();
Date startTime = dto.getStartTime();
......
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