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