From 407fae6f07a2a982a2a814c2f145c40733c966cb Mon Sep 17 00:00:00 2001 From: JLChen <551775569@qq.com> Date: 星期三, 12 一月 2022 15:29:34 +0800 Subject: [PATCH] 2022-01-12 1.更新 --- Crabtree/SmartHome/UI/SimpleControl/Phone/Schedule/Send.cs | 33 +++++++++++++++++++-------------- 1 files changed, 19 insertions(+), 14 deletions(-) diff --git a/Crabtree/SmartHome/UI/SimpleControl/Phone/Schedule/Send.cs b/Crabtree/SmartHome/UI/SimpleControl/Phone/Schedule/Send.cs index 52da91d..616273c 100644 --- a/Crabtree/SmartHome/UI/SimpleControl/Phone/Schedule/Send.cs +++ b/Crabtree/SmartHome/UI/SimpleControl/Phone/Schedule/Send.cs @@ -16,8 +16,11 @@ public static ResponsePackNew GetTimerList () { var jObject = new JObject { }; - jObject.Add ("gatewayId", Int64.Parse (GatewayId)); - jObject.Add ("homeId", Int64.Parse (HomeId)); + jObject.Add ("gatewayId", GatewayId); + jObject.Add ("homeId", HomeId); + jObject.Add ("pageSize", 1000); + jObject.Add ("pageNo", 1); + var responsePackNew = RequestServerhomeId (jObject, API.GetTimerList); return responsePackNew; } @@ -36,8 +39,8 @@ } var deviceDateJObject = new JObject { }; - deviceDateJObject.Add ("gatewayId", Int64.Parse (GatewayId)); - deviceDateJObject.Add ("homeId", Int64.Parse (HomeId)); + deviceDateJObject.Add ("gatewayId", GatewayId); + deviceDateJObject.Add ("homeId", HomeId); var funjArray = new JArray { }; for (int i = 0; i < timer.controlData.actions.Count; i++) { var fun = timer.controlData.actions [i]; @@ -64,9 +67,10 @@ deviceDateJObject.Add ("actions", funjArray); var jObject = new JObject { }; - jObject.Add ("gatewayId", Int64.Parse (GatewayId)); - jObject.Add ("homeId", Int64.Parse (HomeId)); + 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); @@ -94,8 +98,8 @@ } var deviceDateJObject = new JObject { }; - deviceDateJObject.Add ("gatewayId", Int64.Parse (GatewayId)); - deviceDateJObject.Add ("homeId", Int64.Parse (HomeId)); + deviceDateJObject.Add ("gatewayId", GatewayId); + deviceDateJObject.Add ("homeId", HomeId); var funjArray = new JArray { }; for (int i = 0; i < timer.controlData.actions.Count; i++) { var fun = timer.controlData.actions [i]; @@ -122,10 +126,11 @@ deviceDateJObject.Add ("actions", funjArray); var jObject = new JObject { }; - jObject.Add ("gatewayId", Int64.Parse (GatewayId)); - jObject.Add ("homeId", Int64.Parse (HomeId)); + jObject.Add ("gatewayId", GatewayId); + 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); @@ -146,8 +151,8 @@ { var jObject = new JObject { }; jObject.Add ("id", Int64.Parse (id)); - jObject.Add ("gatewayId", Int64.Parse (GatewayId)); - jObject.Add ("homeId", Int64.Parse (HomeId)); + jObject.Add ("gatewayId", GatewayId); + jObject.Add ("homeId", HomeId); var responsePackNew = RequestServerhomeId (jObject, API.DeleteTimer); return responsePackNew; } @@ -160,8 +165,8 @@ var jObject = new JObject { }; jObject.Add ("id", timer.id); - jObject.Add ("gatewayId", Int64.Parse (GatewayId)); - jObject.Add ("homeId", Int64.Parse (HomeId)); + jObject.Add ("gatewayId", GatewayId); + jObject.Add ("homeId", HomeId); var responsePackNew = RequestServerhomeId (jObject, API.IsEnableTimer); return responsePackNew; } -- Gitblit v1.8.0