fix(event): 修复事件详情波形路径更新逻辑
- 修正CsEventPOServiceImpl中wavePath更新时的对象引用错误 - 在EventDetailVO中新增startTime2字段用于显示不带毫秒的时间 - 优化DataTaskServiceImpl中的设备通信离线时段计算逻辑 - 完善DeviceMessageServiceImpl中设备消息映射的边界情况处理
This commit is contained in:
@@ -62,6 +62,13 @@ public class EventDetailVO {
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss.SSS",timezone = "GMT+8")
|
||||
private LocalDateTime startTime;
|
||||
|
||||
/**
|
||||
* 事件时间 不带毫秒
|
||||
*/
|
||||
@DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
|
||||
private LocalDateTime startTime2;
|
||||
|
||||
/**
|
||||
* 事件类型
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user