From 179a0c090c829c3d5bba7c1dd590c639432db697 Mon Sep 17 00:00:00 2001 From: wulin Date: Wed, 15 Nov 2023 20:11:36 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=BE=E7=BD=AE=E5=A5=BD=E9=97=B9=E9=92=9F?= =?UTF-8?q?=E6=8F=90=E9=86=92=E5=8F=AA=E9=9C=80=E8=A6=81=E8=AE=BE=E7=BD=AE?= =?UTF-8?q?=E6=88=90=E5=9B=9E=E5=A4=8D=E5=A5=BD=E7=9A=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../box/websocket/api/command/AlarmClockActionCommand.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/iot-modules/iot-box-websocket-api/src/main/java/com/qiuguo/iot/box/websocket/api/command/AlarmClockActionCommand.java b/iot-modules/iot-box-websocket-api/src/main/java/com/qiuguo/iot/box/websocket/api/command/AlarmClockActionCommand.java index 428552b..78d905c 100644 --- a/iot-modules/iot-box-websocket-api/src/main/java/com/qiuguo/iot/box/websocket/api/command/AlarmClockActionCommand.java +++ b/iot-modules/iot-box-websocket-api/src/main/java/com/qiuguo/iot/box/websocket/api/command/AlarmClockActionCommand.java @@ -302,7 +302,9 @@ public class AlarmClockActionCommand extends ActionCommand implements IActionCom //读取星期 resp.setAction(actionResp); resp.setType(AskTypeEnum.ALARM_CLOCK.getCode()); - resp.setText(msg); + //resp.setText(msg); + //202311152011产品确认只回复好的 + resp.setText("好的"); return baseWebSocketService.sendMessage(action, baseSession, resp); }