refactor(harmonic): 重构事件通知服务并迁移至系统模块

- 移除 AppNotificationService 和 SmsNotificationService 服务类
- 新增消息发送服务相关接口和实现类到系统模块
- 迁移 AsyncConfig 配置类到 cs-system 模块
- 新增事件用户关系表的 Mapper、Service 接口及实现类
- 更新 CsEventPO 添加 landPoint 字段用于存储事件落点信息
- 修改事件处理逻辑使用新的消息发送 Feign 客户端
- 集成事件原因分析功能并更新数据库字段映射
- 更新设备详情 DTO 添加 nDid 属性支持
- 优化事件通知和短信发送的消息内容格式
- 移除旧的设备消息客户端依赖并使用新服务接口
This commit is contained in:
xy
2026-05-27 11:12:32 +08:00
parent 202888ca14
commit f81be47e5f
19 changed files with 581 additions and 193 deletions

View File

@@ -141,4 +141,7 @@ public class CsEventPO extends BaseEntity {
*/
@TableField(value = "advance_type")
private String advanceType;
@TableField(value = "land_point")
private String landPoint;
}

View File

@@ -136,4 +136,7 @@ public class EventDetailVO {
@ApiModelProperty("F47描述")
private String f47;
@ApiModelProperty("事件落点")
private String landPoint;
}