From a6e88ed16c1c2e28b209450d5c9abc21005ec5ee Mon Sep 17 00:00:00 2001 From: JLChen <551775569@qq.com> Date: 星期四, 24 六月 2021 16:57:36 +0800 Subject: [PATCH] 2021-06-24 1.增加网关动态密钥处理 --- Crabtree/SmartHome/UI/SimpleControl/Phone/Schedule/Send.cs | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/Crabtree/SmartHome/UI/SimpleControl/Phone/Schedule/Send.cs b/Crabtree/SmartHome/UI/SimpleControl/Phone/Schedule/Send.cs index 2108664..616273c 100644 --- a/Crabtree/SmartHome/UI/SimpleControl/Phone/Schedule/Send.cs +++ b/Crabtree/SmartHome/UI/SimpleControl/Phone/Schedule/Send.cs @@ -18,6 +18,9 @@ var jObject = new JObject { }; jObject.Add ("gatewayId", GatewayId); jObject.Add ("homeId", HomeId); + jObject.Add ("pageSize", 1000); + jObject.Add ("pageNo", 1); + var responsePackNew = RequestServerhomeId (jObject, API.GetTimerList); return responsePackNew; } @@ -67,6 +70,7 @@ jObject.Add ("gatewayId", GatewayId); jObject.Add ("homeId", HomeId); jObject.Add ("timerName", timer.timerName); + jObject.Add ("room", timer.RoomName); jObject.Add ("isEnable", timer.isEnable); jObject.Add ("executeUtcTime", Method.GetUtcTime (timer.executeUtcTime)); jObject.Add ("controlData", deviceDateJObject); @@ -126,6 +130,7 @@ jObject.Add ("homeId", HomeId); jObject.Add ("id", timer.id); jObject.Add ("timerName", timer.timerName); + jObject.Add ("room", timer.RoomName); jObject.Add ("isEnable", timer.isEnable); jObject.Add ("executeUtcTime", Method.GetUtcTime (timer.executeUtcTime)); jObject.Add ("controlData", deviceDateJObject); -- Gitblit v1.8.0