Ejemplo n.º 1
0
 /// <summary>
 /// RFID
 /// </summary>
 public static MapElement.RFID RFID(string json)
 {
     MapElement.RFID rfid = new MapElement.RFID();
     //json 转为对象
     rfid = JsonConvert.DeserializeObject <MapElement.RFID>(json);
     //将Base转为标准对象
     BaseToStandard.RFID(rfid);
     return(rfid);
 }
Ejemplo n.º 2
0
            public static List <MapElement.RFID> RFIDList(string json)
            {
                List <MapElement.RFID> rfidList = new List <MapElement.RFID>();

                //json 转为对象
                rfidList = JsonConvert.DeserializeObject <List <MapElement.RFID> >(json);
                //将Base转为标准对象
                BaseToStandard.RFID(rfidList);
                return(rfidList);
            }