feat(event): 添加电能质量事件源信息存储和查询功能

- 在事件详情表中新增 SagSource 字段存储
- 修改 insertEvent 方法增加 sagSource 参数传递
- 优化事件用户查询页面的搜索逻辑,支持按告警码查询
- 更新 XML 映射文件中的搜索条件构建方式
- 添加对电能质量参数 EPD 列表的查询支持
- 修复数据服务中排序字段错误问题
- 补充便携式离线日志处理中的源信息同步
This commit is contained in:
xy
2026-07-07 20:29:05 +08:00
parent e629c8b42c
commit f185fa4706
6 changed files with 198 additions and 60 deletions

View File

@@ -628,6 +628,9 @@ public class PortableOfflLogServiceImpl extends ServiceImpl<PortableOfflLogMappe
} else {
rmpEventDetailPo.setDealFlag(0);
}
if (!Objects.isNull(item.getSagSource())) {
rmpEventDetailPo.setSagsource(item.getSagSource());
}
wlRmpEventDetailMapper.insert(rmpEventDetailPo);
}