Commit 685affd0 by 桂前礼

fix bug

parent 4f19bbed
...@@ -75,7 +75,7 @@ public class PcloudGuideSilenceRunnerImpl implements ApplicationRunner { ...@@ -75,7 +75,7 @@ public class PcloudGuideSilenceRunnerImpl implements ApplicationRunner {
SendTextMessageVO sendTextMessageVO = new SendTextMessageVO(); SendTextMessageVO sendTextMessageVO = new SendTextMessageVO();
sendTextMessageVO.setContent(message.getContent()); sendTextMessageVO.setContent(message.getContent());
sendTextMessageVO.setAltId(pcloudGuideDelayDto.getRobotWxId()); sendTextMessageVO.setAltId(pcloudGuideDelayDto.getRobotWxId());
sendTextMessageVO.setWxGroupId(pcloudGuideDelayDto.getUserWxId()); sendTextMessageVO.setWxGroupId(userId);
sendTextMessageVO.setIp(pcloudGuideDelayDto.getIp()); sendTextMessageVO.setIp(pcloudGuideDelayDto.getIp());
sendTextMessageVO.setCode(pcloudGuideDelayDto.getCode()); sendTextMessageVO.setCode(pcloudGuideDelayDto.getCode());
WxGroupSDK.sendTextMessage(sendTextMessageVO); WxGroupSDK.sendTextMessage(sendTextMessageVO);
...@@ -84,7 +84,7 @@ public class PcloudGuideSilenceRunnerImpl implements ApplicationRunner { ...@@ -84,7 +84,7 @@ public class PcloudGuideSilenceRunnerImpl implements ApplicationRunner {
SendPicMessageVO sendPicMessageVO = new SendPicMessageVO(); SendPicMessageVO sendPicMessageVO = new SendPicMessageVO();
sendPicMessageVO.setPicUrl(message.getPicUrl()); sendPicMessageVO.setPicUrl(message.getPicUrl());
sendPicMessageVO.setAltId(pcloudGuideDelayDto.getRobotWxId()); sendPicMessageVO.setAltId(pcloudGuideDelayDto.getRobotWxId());
sendPicMessageVO.setWxGroupId(pcloudGuideDelayDto.getUserWxId()); sendPicMessageVO.setWxGroupId(userId);
sendPicMessageVO.setIp(pcloudGuideDelayDto.getIp()); sendPicMessageVO.setIp(pcloudGuideDelayDto.getIp());
sendPicMessageVO.setCode(pcloudGuideDelayDto.getCode()); sendPicMessageVO.setCode(pcloudGuideDelayDto.getCode());
WxGroupSDK.sendPicMessage(sendPicMessageVO); 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