feat(event): 添加监测点状态显示和DVR治理效果查询功能

- 在AppLineDetailVo中新增runStatus字段用于显示监测点通讯状态
- 新增queryEventPageWebDvr方法支持DVR治理效果事件查询
- 添加PqGovernPlanFeignClient依赖注入用于获取治理方案数据
- 修改queryEventPageWeb方法支持根据isDvr参数判断查询方式
- 在CsEventUserQueryPage中新增isDvr字段标识是否为DVR治理效果
- 修复CT/PT变比计算中的空指针异常问题
- 更新PqGovernPlanController接口描述为根据监测点查询方案数据
- 移除StableDataServiceImpl中的注释代码
This commit is contained in:
xy
2026-06-23 18:39:30 +08:00
parent 57d5b159ef
commit 6f66e1d336
8 changed files with 184 additions and 98 deletions

View File

@@ -78,4 +78,7 @@ public class CsEventUserQueryPage extends CsEventUserQueryParam{
@ApiModelProperty(value = "排序字段 0:发生时间 1:幅值 2:持续时间")
private Integer sortField;
@ApiModelProperty(value = "是否是dvr治理效果 0:否 1:是")
private Integer isDvr;
}

View File

@@ -28,6 +28,9 @@ public class AppLineDetailVo implements Serializable {
@ApiModelProperty("监测点id")
private String pointId;
@ApiModelProperty("监测点通讯状态 1:离线 2:在线")
private Integer runStatus;
@ApiModelProperty("数据时间")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Instant dataTime;