Commit 685affd0 by 桂前礼

fix bug

parent 4f19bbed
......@@ -75,7 +75,7 @@ public class PcloudGuideSilenceRunnerImpl implements ApplicationRunner {
SendTextMessageVO sendTextMessageVO = new SendTextMessageVO();
sendTextMessageVO.setContent(message.getContent());
sendTextMessageVO.setAltId(pcloudGuideDelayDto.getRobotWxId());
sendTextMessageVO.setWxGroupId(pcloudGuideDelayDto.getUserWxId());
sendTextMessageVO.setWxGroupId(userId);
sendTextMessageVO.setIp(pcloudGuideDelayDto.getIp());
sendTextMessageVO.setCode(pcloudGuideDelayDto.getCode());
WxGroupSDK.sendTextMessage(sendTextMessageVO);
......@@ -84,7 +84,7 @@ public class PcloudGuideSilenceRunnerImpl implements ApplicationRunner {
SendPicMessageVO sendPicMessageVO = new SendPicMessageVO();
sendPicMessageVO.setPicUrl(message.getPicUrl());
sendPicMessageVO.setAltId(pcloudGuideDelayDto.getRobotWxId());
sendPicMessageVO.setWxGroupId(pcloudGuideDelayDto.getUserWxId());
sendPicMessageVO.setWxGroupId(userId);
sendPicMessageVO.setIp(pcloudGuideDelayDto.getIp());
sendPicMessageVO.setCode(pcloudGuideDelayDto.getCode());
WxGroupSDK.sendPicMessage(sendPicMessageVO);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment