88 lines
1.7 KiB
Java
88 lines
1.7 KiB
Java
package com.arpa.hndahesudintocctmsdriver.bean;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* @ClassName GDLocation
|
|
* @Author john
|
|
* @Date 2024/11/27 13:59
|
|
* @Description TODO
|
|
*/
|
|
public class GDLocation implements Serializable {
|
|
|
|
private double baiduLongitude;
|
|
private double baiduLatitude;
|
|
private String location;
|
|
private String time;
|
|
private double altitude;
|
|
private float speed;
|
|
private float direction;
|
|
private int interval;
|
|
|
|
public double getBaiduLongitude() {
|
|
return baiduLongitude;
|
|
}
|
|
|
|
public void setBaiduLongitude(double baiduLongitude) {
|
|
this.baiduLongitude = baiduLongitude;
|
|
}
|
|
|
|
public double getBaiduLatitude() {
|
|
return baiduLatitude;
|
|
}
|
|
|
|
public void setBaiduLatitude(double baiduLatitude) {
|
|
this.baiduLatitude = baiduLatitude;
|
|
}
|
|
|
|
public String getLocation() {
|
|
return location;
|
|
}
|
|
|
|
public void setLocation(String location) {
|
|
this.location = location;
|
|
}
|
|
|
|
public String getTime() {
|
|
return time;
|
|
}
|
|
|
|
public void setTime(String time) {
|
|
this.time = time;
|
|
}
|
|
|
|
public double getAltitude() {
|
|
return altitude;
|
|
}
|
|
|
|
public void setAltitude(double altitude) {
|
|
this.altitude = altitude;
|
|
}
|
|
|
|
public float getSpeed() {
|
|
return speed;
|
|
}
|
|
|
|
public void setSpeed(float speed) {
|
|
this.speed = speed;
|
|
}
|
|
|
|
public float getDirection() {
|
|
return direction;
|
|
}
|
|
|
|
public void setDirection(float direction) {
|
|
this.direction = direction;
|
|
}
|
|
|
|
public int getInterval() {
|
|
return interval;
|
|
}
|
|
|
|
public void setInterval(int interval) {
|
|
this.interval = interval;
|
|
}
|
|
}
|