fix(event): 修复事件详情波形路径更新逻辑

- 修正CsEventPOServiceImpl中wavePath更新时的对象引用错误
- 在EventDetailVO中新增startTime2字段用于显示不带毫秒的时间
- 优化DataTaskServiceImpl中的设备通信离线时段计算逻辑
- 完善DeviceMessageServiceImpl中设备消息映射的边界情况处理
This commit is contained in:
xy
2026-04-29 16:49:04 +08:00
parent 058229e8c4
commit db2821347d
5 changed files with 94 additions and 22 deletions

View File

@@ -103,6 +103,8 @@ class DeviceMessageServiceImpl implements DeviceMessageService {
map.put(1,item.getLineId());
} else if (Objects.equals(dictData.getCode(), DicDataEnum.LOAD_SIDE.getCode())){
map.put(2,item.getLineId());
} else {
map.put(item.getClDid(),item.getLineId());
}
}
}