feat(emergency): 宣教推送IM消息改为独立方法sendGroupMsgArticle,不影响已有业务

- 新增 TencentCloudImUtil.sendGroupMsgArticle: From_Account生效、不覆盖businessID、fromAdmin动态判断
- 新增 TXController.sendGroupMsgArticle / IMHelloApi.sendGroupMsgArticle
- FirstAidPushServiceImpl 推送人改为当前登录用户,调用新方法
This commit is contained in:
2026-07-07 13:43:21 +08:00
parent 37132eeeb6
commit 4898a63b4b
4 changed files with 68 additions and 4 deletions
@@ -48,6 +48,9 @@ public interface IMHelloApi {
@PostMapping(value = "/wnapp/sendGroupMsg")
IMGroupMsgResDO sendGroupMsg(@RequestBody @Validated ImGroupMsgTextReqDO imGroupMsgTextReqDO);
@PostMapping(value = "/wnapp/sendGroupMsgArticle")
IMGroupMsgResDO sendGroupMsgArticle(@RequestBody @Validated ImGroupMsgTextReqDO imGroupMsgTextReqDO);
@PostMapping(value = "/wnapp/sendGroupMsgTextNew")
IMGroupMsgResDO sendGroupMsgTextNew(@RequestBody @Validated ImGroupMsgTextReqDO imGroupMsgTextReqDO);