mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Fix error on retrieving location
This commit is contained in:
parent
0f8d4a02d4
commit
7dc9fbb04b
@ -56,45 +56,29 @@ public class DeviceLocation implements Serializable {
|
||||
@ApiModelProperty(name = "updatedTime", value = "Update time of the device.", required = true)
|
||||
private Date updatedTime;
|
||||
@ApiModelProperty(name = "altitude", value = "Device altitude.", required = true)
|
||||
private Double altitude;
|
||||
private double altitude;
|
||||
@ApiModelProperty(name = "speed", value = "Device speed.", required = true)
|
||||
private Float speed;
|
||||
private float speed;
|
||||
@ApiModelProperty(name = "bearing", value = "Device bearing.", required = true)
|
||||
private Float bearing;
|
||||
private float bearing;
|
||||
@ApiModelProperty(name = "distance", value = "Device distance.", required = true)
|
||||
private Double distance;
|
||||
private double distance;
|
||||
|
||||
public Double getDistance() {
|
||||
return distance;
|
||||
}
|
||||
public double getAltitude() { return altitude; }
|
||||
|
||||
public void setDistance(Double distance) {
|
||||
this.distance = distance;
|
||||
}
|
||||
public void setAltitude(double altitude) { this.altitude = altitude; }
|
||||
|
||||
public Double getAltitude() {
|
||||
return altitude;
|
||||
}
|
||||
public float getSpeed() { return speed; }
|
||||
|
||||
public Float getSpeed() {
|
||||
return speed;
|
||||
}
|
||||
public void setSpeed(float speed) { this.speed = speed; }
|
||||
|
||||
public void setSpeed(Float speed) {
|
||||
this.speed = speed;
|
||||
}
|
||||
public float getBearing() { return bearing; }
|
||||
|
||||
public Float getBearing() {
|
||||
return bearing;
|
||||
}
|
||||
public void setBearing(float bearing) { this.bearing = bearing; }
|
||||
|
||||
public void setBearing(Float bearing) {
|
||||
this.bearing = bearing;
|
||||
}
|
||||
public double getDistance() { return distance; }
|
||||
|
||||
public void setAltitude(Double altitude) {
|
||||
this.altitude = altitude;
|
||||
}
|
||||
public void setDistance(double distance) { this.distance = distance; }
|
||||
|
||||
public int getDeviceId() {
|
||||
return deviceId;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user