package com.sinata.ministryoftransport.model;
|
|
import java.util.Date;
|
|
/**
|
* 经营出发接口
|
*/
|
public class OperateDepart {
|
/**
|
* 订单号
|
*/
|
private String OrderId;
|
/**
|
* 机动车驾驶证号
|
*/
|
private String LicenseId;
|
/**
|
* 运价类型编码
|
*/
|
private String FareType;
|
/**
|
* 车辆号牌
|
*/
|
private String VehicleNo;
|
/**
|
* 车辆出发经度
|
*/
|
private Double DepLongitude;
|
/**
|
* 车辆出发纬度
|
*/
|
private Double DepLatitude;
|
/**
|
* 坐标加密标识(1:GCJ-02测绘局标准,2:WGS84 GPS标准,3:BD-09百度标准,4:CGCS2000北斗标准,0:其他)
|
*/
|
private Integer Encrypt;
|
/**
|
* 上车时间
|
*/
|
private Date DepTime;
|
/**
|
* 空驶里程(km)
|
*/
|
private Integer WaitMile;
|
/**
|
* 等待时间(秒)
|
*/
|
private Integer WaitTime;
|
|
public String getOrderId() {
|
return OrderId;
|
}
|
|
public void setOrderId(String orderId) {
|
OrderId = orderId;
|
}
|
|
public String getLicenseId() {
|
return LicenseId;
|
}
|
|
public void setLicenseId(String licenseId) {
|
LicenseId = licenseId;
|
}
|
|
public String getFareType() {
|
return FareType;
|
}
|
|
public void setFareType(String fareType) {
|
FareType = fareType;
|
}
|
|
public String getVehicleNo() {
|
return VehicleNo;
|
}
|
|
public void setVehicleNo(String vehicleNo) {
|
VehicleNo = vehicleNo;
|
}
|
|
public Double getDepLongitude() {
|
return DepLongitude;
|
}
|
|
public void setDepLongitude(Double depLongitude) {
|
DepLongitude = depLongitude;
|
}
|
|
public Double getDepLatitude() {
|
return DepLatitude;
|
}
|
|
public void setDepLatitude(Double depLatitude) {
|
DepLatitude = depLatitude;
|
}
|
|
public Integer getEncrypt() {
|
return Encrypt;
|
}
|
|
public void setEncrypt(Integer encrypt) {
|
Encrypt = encrypt;
|
}
|
|
public Date getDepTime() {
|
return DepTime;
|
}
|
|
public void setDepTime(Date depTime) {
|
DepTime = depTime;
|
}
|
|
public Integer getWaitMile() {
|
return WaitMile;
|
}
|
|
public void setWaitMile(Integer waitMile) {
|
WaitMile = waitMile;
|
}
|
|
public Integer getWaitTime() {
|
return WaitTime;
|
}
|
|
public void setWaitTime(Integer waitTime) {
|
WaitTime = waitTime;
|
}
|
|
@Override
|
public String toString() {
|
return "OperateDepart{" +
|
"OrderId='" + OrderId + '\'' +
|
", LicenseId='" + LicenseId + '\'' +
|
", FareType='" + FareType + '\'' +
|
", VehicleNo='" + VehicleNo + '\'' +
|
", DepLongitude=" + DepLongitude +
|
", DepLatitude=" + DepLatitude +
|
", Encrypt=" + Encrypt +
|
", DepTime=" + DepTime +
|
", WaitMile=" + WaitMile +
|
", WaitTime=" + WaitTime +
|
'}';
|
}
|
}
|