fix(emergency): 宣教推送IM消息发送人改为当前登录用户,不再硬编码administrator

This commit is contained in:
2026-07-07 10:39:36 +08:00
parent bb95f1d78f
commit 3c65f7eb24
@@ -149,7 +149,7 @@ public class FirstAidPushServiceImpl implements IFirstAidPushService {
ImGroupMsgTextReqDO im = new ImGroupMsgTextReqDO(); ImGroupMsgTextReqDO im = new ImGroupMsgTextReqDO();
im.setGroupId(order.getSessionId()); im.setGroupId(order.getSessionId());
im.setFromUserId("administrator"); im.setFromUserId(loginUser != null ? loginUser.getId() : "administrator");
im.setContent(JSONObject.toJSON(sendIm).toString()); im.setContent(JSONObject.toJSON(sendIm).toString());
imHelloApi.sendGroupMsg(im); imHelloApi.sendGroupMsg(im);