Browse Source

Update DeviceService.java

sanqi73 1 tuần trước cách đây
mục cha
commit
b33f9c4165

+ 8 - 1
src/main/java/com/zhiyun/project/item/service/DeviceService.java

@@ -64,6 +64,9 @@ public class DeviceService extends ServiceImpl<DeviceMapper, Device> {
     }
 
     public int insetDeviceData(JSONObject jsonObject) {
+        System.out.println("asljdjlasjdlasjdlasd");
+        System.out.println(jsonObject);
+
         if (jsonObject == null || jsonObject.getString("deviceid") == null) {
             return -1;
         }
@@ -73,7 +76,11 @@ public class DeviceService extends ServiceImpl<DeviceMapper, Device> {
         device.setDeviceid(jsonObject.getString("deviceid"));
 
         if(jsonObject.getDouble("lat")!=null)
-            device.setLat(jsonObject.getDouble("lat"));
+        {device.setLat(jsonObject.getDouble("lat"));
+            System.out.println("dsadasd");}
+
+        else
+            System.out.println("asdadas");
 
         if(jsonObject.getDouble("lon")!=null)
             device.setLon(jsonObject.getDouble("lon"));