feat(emergency): push/send 接入IM消息推送,SendIm 新增 businessId 字段

- SendIm 新增 businessId 字段(String),用于区分业务来源,不影响已有调用
- FirstAidPushServiceImpl.send() 步骤5从日志占位改为实际发送IM群消息
- businessId 固定为 "article",前端可据此识别宣教推送消息
- 工单无 sessionId 时跳过IM发送并 log.warn 告警

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-07-07 09:48:37 +08:00
co-authored by Claude
parent 945c0b46d7
commit f10221e92c
2 changed files with 34 additions and 7 deletions
@@ -20,4 +20,8 @@ public class SendIm {
* 类型 1: 应急单
*/
private Integer type;
/**
* 业务标识,用于区分不同业务来源(例:"article"=宣教推送)
*/
private String businessId;
}