package com.sinata.ministryoftransport.model;
|
|
/**
|
* 驾驶员定位信息
|
*/
|
public class PositionDriver {
|
/**
|
* 机动车驾驶证号
|
*/
|
private String LicenseId;
|
/**
|
* 行政区划代码
|
*/
|
private Integer DriverRegionCode;
|
/**
|
* 车辆号牌
|
*/
|
private String VehicleNo;
|
/**
|
* 定位时间(时间戳)
|
*/
|
private Long PositionTime;
|
/**
|
* 经度
|
*/
|
private Double Longitude;
|
/**
|
* 纬度
|
*/
|
private Double Latitude;
|
/**
|
* 坐标加密标识(1:GCJ-02测绘局标准,2:WGS84 GPS标准,3:BD-09百度标准,4:CGCS2000北斗标准,0:其他)
|
*/
|
private Integer Encrypt;
|
/**
|
* 方向角
|
*/
|
private Double Direction;
|
/**
|
* 海拔高度
|
*/
|
private Double Elevation;
|
/**
|
* 瞬时速度(km/h)
|
*/
|
private Integer Speed;
|
/**
|
* 营运状态(1:载客,2:接单,3:空驶,4:停运)
|
*/
|
private Integer BizStatus;
|
/**
|
* 订单编号
|
*/
|
private String OrderId;
|
|
public String getLicenseId() {
|
return LicenseId;
|
}
|
|
public void setLicenseId(String licenseId) {
|
LicenseId = licenseId;
|
}
|
|
public Integer getDriverRegionCode() {
|
return DriverRegionCode;
|
}
|
|
public void setDriverRegionCode(Integer driverRegionCode) {
|
DriverRegionCode = driverRegionCode;
|
}
|
|
public String getVehicleNo() {
|
return VehicleNo;
|
}
|
|
public void setVehicleNo(String vehicleNo) {
|
VehicleNo = vehicleNo;
|
}
|
|
public Long getPositionTime() {
|
return PositionTime;
|
}
|
|
public void setPositionTime(Long positionTime) {
|
PositionTime = positionTime;
|
}
|
|
public Double getLongitude() {
|
return Longitude;
|
}
|
|
public void setLongitude(Double longitude) {
|
Longitude = longitude;
|
}
|
|
public Double getLatitude() {
|
return Latitude;
|
}
|
|
public void setLatitude(Double latitude) {
|
Latitude = latitude;
|
}
|
|
public Integer getEncrypt() {
|
return Encrypt;
|
}
|
|
public void setEncrypt(Integer encrypt) {
|
Encrypt = encrypt;
|
}
|
|
public Double getDirection() {
|
return Direction;
|
}
|
|
public void setDirection(Double direction) {
|
Direction = direction;
|
}
|
|
public Double getElevation() {
|
return Elevation;
|
}
|
|
public void setElevation(Double elevation) {
|
Elevation = elevation;
|
}
|
|
public Integer getSpeed() {
|
return Speed;
|
}
|
|
public void setSpeed(Integer speed) {
|
Speed = speed;
|
}
|
|
public Integer getBizStatus() {
|
return BizStatus;
|
}
|
|
public void setBizStatus(Integer bizStatus) {
|
BizStatus = bizStatus;
|
}
|
|
public String getOrderId() {
|
return OrderId;
|
}
|
|
public void setOrderId(String orderId) {
|
OrderId = orderId;
|
}
|
|
@Override
|
public String toString() {
|
return "PositionDriver{" +
|
"LicenseId='" + LicenseId + '\'' +
|
", DriverRegionCode=" + DriverRegionCode +
|
", VehicleNo='" + VehicleNo + '\'' +
|
", PositionTime=" + PositionTime +
|
", Longitude=" + Longitude +
|
", Latitude=" + Latitude +
|
", Encrypt=" + Encrypt +
|
", Direction=" + Direction +
|
", Elevation=" + Elevation +
|
", Speed=" + Speed +
|
", BizStatus=" + BizStatus +
|
", OrderId='" + OrderId + '\'' +
|
'}';
|
}
|
}
|