From 5de5a26d3825b3182a7d3a18ed1cbdbb78a3f9aa Mon Sep 17 00:00:00 2001 From: wxr <464027401@qq.com> Date: 星期四, 23 七月 2020 16:39:59 +0800 Subject: [PATCH] 2020-07-23 --- HDL_ON/DAL/Server/HttpServerRequest.cs | 35 +++++++++++++++++++++++++++++------ 1 files changed, 29 insertions(+), 6 deletions(-) diff --git a/HDL_ON/DAL/Server/HttpServerRequest.cs b/HDL_ON/DAL/Server/HttpServerRequest.cs index 5a3edf9..b58ed71 100644 --- a/HDL_ON/DAL/Server/HttpServerRequest.cs +++ b/HDL_ON/DAL/Server/HttpServerRequest.cs @@ -45,6 +45,35 @@ #endif } + /// <summary> + /// 鑾峰彇浼犳劅鍣ㄥ巻鍙叉暟鎹� + /// </summary> + /// <param name="subnetId"></param> + /// <param name="deviceId"></param> + /// <param name="bigClass"></param> + /// <param name="minClass"></param> + /// <param name="queryType"></param> + /// <param name="loopId"></param> + /// <param name="nowMonth"></param> + /// <param name="mac"></param> + /// <returns></returns> + public ResponsePack GetSensorHistory(int subnetId,int deviceId,int bigClass,int minClass,int queryType,int loopId,int nowMonth,string mac) + { + Dictionary<string, object> d = new Dictionary<string, object>(); + d.Add("SubnetID", subnetId); + d.Add("DeviceID", deviceId); + d.Add("LargeType", bigClass); + d.Add("SmallType", minClass); + d.Add("QueryType", queryType); + d.Add("loopId", loopId); + d.Add("NowMonth", nowMonth); + d.Add("MAC", DB_ResidenceData.residenceData.residenceGatewayMAC); + d.Add("LocalTimeZone", 8); + var jsonString = Newtonsoft.Json.JsonConvert.SerializeObject(d); + return RequestHttps("https://developer.hdlcontrol.com/api/GetSensorPushHistory", jsonString,true); + + } + public string GetRequestResultMsg(string resultCode) { string result = ""; @@ -250,12 +279,6 @@ MainPage.LoginUser.headImagePageBytes = headImageBytes; var filePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Personal) + "/", "headImage.png"); -#if DEBUG - Application.RunOnMainThread(() => - { - new Tip() { CloseTime = 5, Text = filePath }.Show(MainPage.BasePageView); - }); -#endif fs = new FileStream(filePath, FileMode.Create, FileAccess.Write); fs.Write(headImageBytes, 0, headImageBytes.Length); fs.Flush(); -- Gitblit v1.8.0