HttpManager.cs 25.7 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713
using Common;
using RestSharp;
using System;
using System.Collections.Generic;
using System.Drawing;

namespace DeviceLibrary
{
    public class HttpManager
    {
        private static log4net.ILog log = log4net.LogManager.GetLogger("HttpManager");
        private static string Addr_CurSO = "/rest/api/qisda/device/currentOutLine";
        /// <summary>
        /// 查询当前出料工单信息
        /// </summary>
        /// <returns></returns>
        public static bool FindCurSO(out WOData woData)
        {
            woData = null;
            try
            {
                Dictionary<string, string> paramMap = new Dictionary<string, string>();
                //paramMap.Add("deviceAlarmList", msgListStr);
                string server = GetAddr(Addr_CurSO, paramMap);
                DateTime startTime = DateTime.Now;
                string resultStr = HttpHelper.Get(server);
                log.Debug("当前正在出工单料信息【" + server + "】【" + resultStr + "】");

                WorkOrder workOrder = JsonHelper.DeserializeJsonToObject<WorkOrder>(resultStr);

                if (workOrder == null)
                {
                    return false;
                }
                else
                {
                    if (workOrder.data == null)
                    {
                        return false;
                    }
                    else
                    {
                        if (workOrder.data.line != null)
                        {
                            string tempLocation = workOrder.data.line;
                            if (workOrder.data.line.Equals("3DFeeder"))
                            {
                                tempLocation = "3DFeederIn";
                            }
                            else if (workOrder.data.line.Equals("3CFeeder"))
                            {
                                tempLocation = "3CFeederIn";
                            }
                            workOrder.data.line = tempLocation;
                            woData = workOrder.data;
                            return true;
                        }

                    }

                }

            }
            catch (Exception ex)
            {
                log.Error(ex);
                return false;
            }
            return false;
        }
        /// <summary>
        /// 当前正在出的工单信息
        /// </summary>
        public class WorkOrder
        {
            //{"code":0,"msg":"ok","data":{"hSerial":"32622","line":null,"so":"2506287"}}
            //{"code":0,"msg":"ok","data":{"hSerial":"32651","line":"D2","so":"2508551"}}
            public int code { get; set; }
            public string msg { get; set; }
            public WOData data { get; set; }

        }
        public class WOData
        {
            public string hSerial { get; set; }
            public string line { get; set; }
            public string so { get; set; }

            public string ToTxt(string nodeName)
            {
                return string.Format("[hSerial={0},line={1}[{3}],so={2}]", hSerial, line, so, nodeName);
            }
        }
        public static string A6_Target = "";
        /// <summary>
        /// 查找满料架目的地
        /// </summary>
        /// <param name="rfid"></param>
        /// <param name="dest"></param>
        /// <returns></returns>
        public static bool FindFullShelfTarget(string rfid, out BoxDestInfo dest)
        {
            dest = null;
            A6_Target = "";
            try
            {
                if (rfid.Equals("") || rfid.Equals("00"))
                    return false;
                string itsHttp = "http://"+AppConfigHelper.GetValue(SettingString.ITS)+"/ESMTCommonInterface/CommonService.asmx/VMIGetBoxDestInfo?boxRFID=";
                string url = itsHttp + rfid;
                var client = new RestClient(url) { Timeout = -1 };
                var request = new RestRequest(Method.GET);
                //request.AddHeader("Host", "10.85.17.233");
                IRestResponse response = client.Execute(request);
                string json = response.Content;
                json = json.Replace("\r", "");
                json = json.Replace("\n", "");
                json = json.Replace(" ", "");
                log.Debug("ITS URL: " + url + " Return: " + json);

                if (string.IsNullOrWhiteSpace(json)) return false;
                List<BoxDestInfo> res = JsonHelper.DeserializeJsonToList<BoxDestInfo>(json);
                //JavaScriptSerializer serializer = new JavaScriptSerializer();
                if (res == null || res.Count == 0)
                    return false;
                string tempLocation = res[0].location;
                if (res[0].id == rfid)
                {
                    if (res[0].location.Equals("3DFeeder"))
                    {
                        tempLocation = "3DFeederIn";
                    }
                    else if (res[0].location.Equals("3CFeeder"))
                    {
                        tempLocation = "3CFeederIn";
                    }

                    if (AGVManager.GetNodeNameByLineName(tempLocation, out string loc))
                    {
                        int i = AGVManager.FindNode(loc);
                        if (i > -1)
                        {
                            #region 检查是否有空料架要出,有则先出空料架
                            //foreach (var item in Common.missionManager.missionList)
                            //{
                            //    if (loc.Equals(item.NodeName))
                            //    {
                            //        Common.LogInfo("节点[" + loc + "]当前有空架任务,延迟A6出满料架任务[" + rfid + "]", false);
                            //        return false;
                            //    }
                            //}

                            //if (Common.nodeInfo[i].AgvName.Equals("").Equals(false))//有小车在目标任务点(限制4C车间),等待结束后再接任务
                            //{
                            //    Common.LogInfo("节点[" + loc + "]当前有任务,延迟A6出满料架任务[" + rfid + "]", false);
                            //    return false;
                            //}

                            //检查是否有车接到满料架任务,有则不再重复分配
                            //int id = Common.agvInfo.FindIndex(s => s.RFID == rfid);
                            //if (id > -1)
                            //{
                            //    Common.LogInfo(Common.agvInfo[i].Name + " 正在执行满料架任务:目的地为 " + loc + " [产线名 " + res[0].location + "],不可重复分配小车");
                            //    return false;
                            //}
                            #endregion
                            res[0].location = loc;
                            dest = res[0];
                            AGVManager.GetLineNameByNodeName(loc, out string line);
                            A6_Target = res[0].ShowInfo(line);
                            log.Debug("查找满料架任务[RFID=" + rfid + "]:目的地为 " + loc + " [产线名 " + line + "]");
                            return true;
                        }
                        else
                        {
                            log.Warn("节点[" + loc + "]不存在或者未开启调用");
                            return false;
                        }

                    }
                }
                //[{"msg":"0料车已解绑或未发新料"}]
                A6_Target = json;
                return false;
            }
            catch (Exception ex)
            {
                log.Error("FindA6Destination", ex);
                return false;
            }
        }

        public class BoxDestInfo
        {
            /// <summary>
            /// RFID
            /// </summary>
            public string id { get; set; }

            public string SO { get; set; }
            public string location { get; set; }

            public string ShowInfo(string loc)
            {
                return string.Format("RFID={0},SO={1},location={2}[{3}]", id, SO, loc, location);
            }
        }


        /// <summary>
        /// 物料到产线状态上报
        /// </summary>
        /// <param name="rfid"></param>
        /// <param name="lineName"></param>
        /// <returns></returns>
        public static bool UpdateStatus(string rfid, string nodeName)
        {
            //GET /ESMTCommonInterface/CommonService.asmx/UpdateStatusBy?id=string&location=string HTTP/1.1
            //Host: 10.85.17.233

            AGVManager.GetLineNameByNodeName(nodeName, out string lineName);
            if (lineName.Equals("3DFeederIn"))
            {
                lineName = "3DFeeder";
            }
            else if (lineName.Equals("3CFeederIn"))
            {
                lineName = "3CFeeder";
            }
            string addr = "http://"+ AppConfigHelper.GetValue(SettingString.ITS) + "/ESMTCommonInterface/CommonService.asmx/UpdateStatusBy?id=" + rfid + "&location=" + lineName;
            //[{"msg":"1更新成功"}]
            try
            {
                string result = HttpHelper.Get(addr);
                log.Info(string.Format("[{0}] [{1}]", addr, result));
                if (!result.Equals(""))
                {
                    List<Msg> msgs = JsonHelper.DeserializeJsonToList<Msg>(result);
                    if (msgs == null || msgs.Count == 0)
                        return false;
                    bool resRtn = int.TryParse(msgs[0].msg.Substring(0, 1), out int resCode);
                    if (resRtn)
                    {
                        if (resCode.Equals(1))
                        {
                            log.Info(string.Format("产线{0} 物料状态更新成功[{1}]", lineName, rfid));
                            return true;
                        }

                        else
                            return false;
                    }
                    return false;
                }
            }
            catch { return false; }
            return false;
        }
        /// <summary>
        /// 获取大料架解绑情况
        /// </summary>
        /// <param name="rfid"></param>
        /// <param name="lineName">产线名称</param>
        /// <returns></returns>
        public static bool GetRackBy(string rfid, out string lineName)
        {
            lineName = "";
            //GET /ESMTCommonInterface/CommonService.asmx/GetRackBy?id=string HTTP/1.1
            //Host: 10.85.17.233
            string addr = "http://"+AppConfigHelper.GetValue(SettingString.ITS)+"/ESMTCommonInterface/CommonService.asmx/GetRackBy?id=" + rfid;
            //[{"msg":"1OKD1"}]
            //[{"msg":"0NGFeeder"}]
            try
            {
                string result = HttpHelper.Get(addr);
                if (!result.Equals(""))
                {
                    List<Msg> msgs = JsonHelper.DeserializeJsonToList<Msg>(result);
                    if (msgs == null || msgs.Count == 0)
                        return false;
                    int.TryParse(msgs[0].msg.Substring(0, 1), out int resCode);
                    string resStr = msgs[0].msg.Substring(1, 2);
                    lineName = msgs[0].msg.Substring(3);
                    log.Debug(string.Format("[{0}] [{1}]", addr, result));
                    if (lineName.Equals("").Equals(true))
                        return false;
                    if (resStr.Equals("OK") || resCode.Equals(1))
                        return true;
                    else
                        return false;
                }
            }
            catch (Exception ex)
            {
                log.Error(ex.Message);
                return false;
            }
            return false;
        }
        public static string GetRackBy(string rfid)
        {
            //GET /ESMTCommonInterface/CommonService.asmx/GetRackBy?id=string HTTP/1.1
            //Host: 10.85.17.233
            string addr = "http://10.85.71.25/ESMTCommonInterface/CommonService.asmx/GetRackBy?id=" + rfid;
            //[{"msg":"1OKD1"}]
            //[{"msg":"0NGFeeder"}]
            try
            {
                string result = HttpHelper.Get(addr);
                if (!result.Equals(""))
                {
                    List<Msg> msgs = JsonHelper.DeserializeJsonToList<Msg>(result);
                    if (msgs == null || msgs.Count == 0)
                        return "";
                    return result;

                }
            }
            catch (Exception ex)
            {
                log.Error(ex.Message);
                return "";
            }
            return "";
        }
        /// <summary>
        /// 大料架接口回复
        /// </summary>
        public class Msg
        {
            public string msg { get; set; }
        }
        public class Msg1
        {
            //{"Code":0,"Msg":"D14,,D7,D33"}
            public int Code { get; set; }
            public string Msg { get; set; }
        }
        private static string Addr_updateDeviceAlarmMsg = "/rest/api/qisda/device/updateDeviceAlarmMsg";
        /// <summary>
        /// 异常看板
        /// </summary>
        /// <param name="msgList"></param>
        /// <returns></returns>
        public static string updateDeviceAlarmMsg(List<AlarmMsg> msgList)
        {
            string msg = "";
            try
            {
                if (msgList.Count.Equals(0)) return "";
                Dictionary<string, string> paramMap = new Dictionary<string, string>();
                string msgListStr = JsonHelper.SerializeObject(msgList);
                paramMap.Add("deviceAlarmList", msgListStr);
                string server = GetAddr(Addr_updateDeviceAlarmMsg, paramMap);
                DateTime startTime = DateTime.Now;
                string resultStr = HttpHelper.Post(server, "");
                log.Debug("异常看板【" + server + "】【" + resultStr + "】");

                RfidData data = JsonHelper.DeserializeJsonToObject<RfidData>(resultStr);

                if (data == null)
                {
                    return msg = " updateDeviceAlarmMsg 没有收到服务器反馈";
                }
                else if (data.code.Equals(0).Equals(false))
                {
                    return msg = "【" + server + "】【" + resultStr + "】" + data.msg;
                }
                return "";
            }
            catch (Exception ex)
            {
                log.Error(ex);
            }
            return msg;
        }
        private static string GetAddr(string addr, Dictionary<string, string> paramsMap)
        {
            string server = AppConfigHelper.GetValue(SettingString.httpServer);
            if (server.EndsWith("/"))
            {
                server = server.Substring(0, server.Length - 1);
            }
            string path = server + addr.Trim() + "?";
            foreach (string paramName in paramsMap.Keys)
            {
                string par = System.Web.HttpUtility.UrlEncode(paramsMap[paramName], System.Text.Encoding.UTF8);
                path += paramName + "=" + par + "&";
            }
            path = path.Substring(0, path.Length - 1);
            return path;
        }

        //public static string Add_emptyMsg = "http://10.85.197.3/BenQMIR/Webservice/AGVService.asmx/CreateEmptyRecycleTask";
        //public static string CreateEmptyTask()
        //{
        //    try
        //    {
        //        Dictionary<string, string> paramMap = new Dictionary<string, string>();
        //        paramMap.Add("emptyStation", "D1");
        //        string path = Add_emptyMsg + "?";
        //        foreach (string paramName in paramMap.Keys)
        //        {
        //            string par = System.Web.HttpUtility.UrlEncode(paramMap[paramName], System.Text.Encoding.UTF8);
        //            path += paramName + "=" + par + "&";
        //        }
        //        path = path.Substring(0, path.Length - 1);

        //        string resultStr = HttpHelper.Post(path, "");
        //        log.Debug("【" + path + "】【" + resultStr + "】");

        //        Result data = JsonHelper.DeserializeJsonToObject<Result>(resultStr);

        //        if (data == null)
        //        {
        //            return " updateDeviceAlarmMsg 没有收到服务器反馈";
        //        }
        //        else
        //        {
        //            return data.Succeed.ToString();
        //        }
        //    }
        //    catch (Exception e)
        //    {
        //        return e.ToString();
        //    }
        //}

        /// <summary>
        /// 获取接驳台料架情况
        /// </summary>
        /// <param name="lineName"></param>
        /// <returns></returns>
        public static string GetRFIDs(string lineName)
        {
            string addr = "";
            if (lineName.StartsWith(SettingString.RoomD_Name_Prefix))
            {

                addr = string.Format("http://{0}/LineGetRFID?line={1}", AppConfigHelper.GetValue(SettingString.IP_3D_Light), lineName);
            }
            else if (lineName.StartsWith(SettingString.RoomC_Name_Prefix))
            {
                addr = string.Format("http://{0}/LineGetRFID?line={1}", AppConfigHelper.GetValue(SettingString.IP_3C_Light), lineName);
            }
            try
            {
                string result = HttpHelper.Get(addr);
                if (!result.Equals(""))
                {
                    Msg1 msgs = JsonHelper.DeserializeJsonToObject<Msg1>(result);
                    if (msgs == null)
                        return ",,,";
                    else
                    {
                        log.Debug(string.Format("{0}接驳台状态:{1}", lineName, msgs.Msg));
                        return msgs.Msg;
                    }

                }
            }
            catch (Exception ex)
            {
                log.Error(ex.Message);
                return ",,,";
            }
            return ",,,";
        }

        /// <summary>
        /// 获取接驳台最外面料架
        /// </summary>
        /// <param name="lineName"></param>
        /// <returns></returns>
        public static string GetFirstRFID(string lineName)
        {
            string addr = "";
            if (lineName.StartsWith(SettingString.RoomD_Name_Prefix))
            {

                addr = string.Format("http://{0}/LineGetRFID?line={1}", AppConfigHelper.GetValue(SettingString.IP_3D_Light), lineName);
            }
            else if (lineName.StartsWith(SettingString.RoomC_Name_Prefix))
            {
                addr = string.Format("http://{0}/LineGetRFID?line={1}", AppConfigHelper.GetValue(SettingString.IP_3C_Light), lineName);
            }
            try
            {
                string result = HttpHelper.Get(addr);
                if (!result.Equals(""))
                {
                    Msg1 msgs = JsonHelper.DeserializeJsonToObject<Msg1>(result);
                    if (msgs == null)
                        return "";
                    else
                    {
                        log.Debug(string.Format("{0}接驳台状态:{1}", lineName, msgs.Msg));
                        string rfid = "";
                        foreach (string item in msgs.Msg.Split(','))
                        {
                            if (!item.Equals(""))
                            {
                                rfid = item;
                            }
                        }
                        return rfid;
                    }

                }
            }
            catch (Exception ex)
            {
                log.Error(ex.Message);
                return "";
            }
            return "";
        }
        /// <summary>
        /// 删除接驳台料架
        /// </summary>
        /// <param name="lineName"></param>
        /// <param name="rfid"></param>
        /// <returns></returns>
        public static bool ClearRFID(string nodeName, string rfid)
        {
            string addr = "";
            string lineName = "";
            if (nodeName.StartsWith(SettingString.RoomD_Name_Prefix) && AGVManager.GetLineNameByNodeName(nodeName, out lineName))
            {

                addr = string.Format("http://{0}/LineClearRFID?line={1}&rfid={2}", AppConfigHelper.GetValue(SettingString.IP_3D_Light), lineName, rfid);
            }
            else if (nodeName.StartsWith(SettingString.RoomC_Name_Prefix) && AGVManager.GetLineNameByNodeName(nodeName, out lineName))
            {
                addr = string.Format("http://{0}/LineClearRFID?line={1}&rfid={2}", AppConfigHelper.GetValue(SettingString.IP_3C_Light), lineName, rfid);
            }
            try
            {
                string result = HttpHelper.Get(addr);
                if (!result.Equals(""))
                {
                    Msg1 msgs = JsonHelper.DeserializeJsonToObject<Msg1>(result);
                    if (msgs == null)
                        return false;
                    else
                    {
                        log.Info(string.Format("删除{0}接驳台料架{1}:{2}", lineName, rfid, msgs.Msg));
                        return true;
                    }

                }
            }
            catch (Exception ex)
            {
                log.Error(ex.Message);
                return false;
            }
            return false;
        }

        private static string Addr_agvRemoveRfid = "/rest/api/qisda/device/agvRemoveRfid";
        /// <summary>
        /// 根据RFID清理料架的缓存信息
        /// </summary>
        /// <param name="rfid"></param>
        /// <returns></returns>
        public static bool AgvRemoveRfid(string rfid)
        {
            try
            {
                Dictionary<string, string> paramMap = new Dictionary<string, string>();
                paramMap.Add("rfid", rfid.ToUpper());
                string server = GetAddr(Addr_agvRemoveRfid, paramMap);
                DateTime startTime = DateTime.Now;
                string resultStr = HttpHelper.Get(server);
                log.Info("清理料架的缓存信息【" + server + "】【" + resultStr + "】");

                RfidData rfidData = JsonHelper.DeserializeJsonToObject<RfidData>(resultStr);

                if (rfidData == null)
                {
                    return false;
                }
                else
                {

                    if (rfidData.code.Equals(0))
                    {
                        return true;
                    }
                }

            }
            catch (Exception ex)
            {
                log.Error(ex);
                return false;
            }
            return false;
        }
    }
    public class ShelfLockInfo
    {
        //返回: {"code":0,"msg":"ok","data":
        //[{"barcode":"S20052301213","cid":"packing-20","rfid":"A12","rfidLoc":"3","lockPos":"4D2001AA0006","lockPosId":"1231"}]}
        /// <summary>
        /// 返回码,0为正常,其他为异常
        /// </summary>
        public int code { get; set; }
        /// <summary>
        /// 消息
        /// </summary>
        public string msg { get; set; }

        public List<ShelfLockData> data { get; set; }
    }

    public class ShelfLockData
    {
        /// <summary>
        /// 库位中料盘的条码
        /// </summary>
        public string barcode { get; set; }
        /// <summary>
        /// 库位中料盘的锁定库位对应的料仓编
        /// </summary>
        public string cid { get; set; }
        /// <summary>
        /// 料架RFID
        /// </summary>
        public string rfid { get; set; }
        /// <summary>
        /// 料架的库位
        /// </summary>
        public int rfidLoc { get; set; }
        /// <summary>
        /// 库位中料盘的锁定库位
        /// </summary>
        public string lockPos { get; set; }
        /// <summary>
        /// 料架出库的剩余数量
        /// </summary>
        public int taskCount { get; set; }

    }

    /// <summary>
    /// 获取料架中的任务数
    /// </summary>
    public class ShelfTaskCount
    {
        // {"code":0,"msg":"ok","data":{"taskCount":0,"rfid":"A2"}}
        /// <summary>
        /// 0为正常,其他为异常
        /// </summary>
        public int code { get; set; }
        /// <summary>
        /// 消息
        /// </summary>
        public string msg { get; set; }

        public ShelfTaskData shelfTaskData { get; set; }
    }

    public struct ShelfTaskData
    {
        /// <summary>
        /// 当前料架剩余任务数(即还有几盘料没放上去)
        /// </summary>
        public int taskCount { get; set; }
        /// <summary>
        /// 料架RFID
        /// </summary>
        public string rfid { get; set; }
    }

    public class AlarmMsg
    {

        //>>>name :  异常位置名称
        public string name = "";
        //>>>msgKey :  异常信息唯一标识
        public string msgKey = "";
        //>>>msgValue :  异常信息
        public string msgValue = "";
        //0:异常;1:正常显示
        public int type = 0;

        /// <summary>
        /// 异常信息
        /// </summary>
        /// <param name="name">异常位置名称</param>
        /// <param name="key">异常信息唯一标识</param>
        /// <param name="value">异常信息</param>
        public AlarmMsg(string name, string key, string value, int type = 0)
        {
            this.name = name;
            this.msgKey = key;
            this.msgValue = value;
            this.type = type;
        }
    }
    public class RfidData
    {
        //{"code":0,"msg":"ok","data":"7"} 
        public int code { get; set; }

        public string msg { get; set; }

        public Dictionary<string, string> data { get; set; }
    }

}