package com.sinata.ministryoftransport.model;
|
|
import java.util.Date;
|
|
/**
|
* 私人小客车合乘订单支付
|
*/
|
public class SharePay {
|
/**
|
* 行政区划代码
|
*/
|
private Integer Address;
|
/**
|
* 驾驶员发起行程编号
|
*/
|
private String RouteId;
|
/**
|
* 乘客合乘订单号
|
*/
|
private String OrderId;
|
/**
|
* 驾驶员手机号
|
*/
|
private String DriverPhone;
|
/**
|
* 机动车驾驶证号
|
*/
|
private String LicenseId;
|
/**
|
* 车辆号牌
|
*/
|
private String VehicleNo;
|
/**
|
* 运价类型编码
|
*/
|
private String FareType;
|
/**
|
* 预计上车时间
|
*/
|
private Date BookDepartTime;
|
/**
|
* 实际上车时间
|
*/
|
private Date DepartTime;
|
/**
|
* 上车地点
|
*/
|
private String Departure;
|
/**
|
* 上车地点经度
|
*/
|
private Double DepLongitude;
|
/**
|
* 上车地点纬度
|
*/
|
private Double DepLatitude;
|
/**
|
* 下车时间
|
*/
|
private Date DestTime;
|
/**
|
* 下车地点
|
*/
|
private String Destination;
|
/**
|
* 下车地点经度
|
*/
|
private Double DestLongitude;
|
/**
|
* 下车地点纬度
|
*/
|
private Double DestLatitude;
|
/**
|
* 坐标加密标识(1:GCJ-02测绘局标准,2:WGS84 GPS标准,3:BD-09百度标准,4:CGCS2000北斗标准,0:其他)
|
*/
|
private Integer Encrypt;
|
/**
|
* 载客里程(km)
|
*/
|
private Integer DriveMile;
|
/**
|
* 载客时间(秒)
|
*/
|
private Integer DriveTime;
|
/**
|
* 实收金额(元)
|
*/
|
private Double FactPrice;
|
/**
|
* 应收金额(元)
|
*/
|
private Double Price;
|
/**
|
* 现金支付金额(元)
|
*/
|
private Double CashPrice;
|
/**
|
* 电子支付机构
|
*/
|
private String LineName;
|
/**
|
* 电子支付金额(元)
|
*/
|
private Double LinePrice;
|
/**
|
* 优惠金额(元)
|
*/
|
private Double BenfitPrice;
|
/**
|
* 燃料成本分摊金额(元)
|
*/
|
private Double ShareFuelFee;
|
/**
|
* 路桥通行分摊金额(元)
|
*/
|
private Double ShareHighwayToll;
|
/**
|
* 附加费(元)
|
*/
|
private Double PassengerTip;
|
/**
|
* 其他费用分摊金额(元)
|
*/
|
private Double ShareOther;
|
/**
|
* 结算状态(0:未结算,1:已结算,2:未知)
|
*/
|
private Integer PayState;
|
/**
|
* 乘客人数
|
*/
|
private Integer PassengerNum;
|
/**
|
* 乘客结算时间
|
*/
|
private Date PayTime;
|
/**
|
* 订单完成时间
|
*/
|
private Date OrderMatchTime;
|
|
public Integer getAddress() {
|
return Address;
|
}
|
|
public void setAddress(Integer address) {
|
Address = address;
|
}
|
|
public String getRouteId() {
|
return RouteId;
|
}
|
|
public void setRouteId(String routeId) {
|
RouteId = routeId;
|
}
|
|
public String getOrderId() {
|
return OrderId;
|
}
|
|
public void setOrderId(String orderId) {
|
OrderId = orderId;
|
}
|
|
public String getDriverPhone() {
|
return DriverPhone;
|
}
|
|
public void setDriverPhone(String driverPhone) {
|
DriverPhone = driverPhone;
|
}
|
|
public String getLicenseId() {
|
return LicenseId;
|
}
|
|
public void setLicenseId(String licenseId) {
|
LicenseId = licenseId;
|
}
|
|
public String getVehicleNo() {
|
return VehicleNo;
|
}
|
|
public void setVehicleNo(String vehicleNo) {
|
VehicleNo = vehicleNo;
|
}
|
|
public String getFareType() {
|
return FareType;
|
}
|
|
public void setFareType(String fareType) {
|
FareType = fareType;
|
}
|
|
public Date getBookDepartTime() {
|
return BookDepartTime;
|
}
|
|
public void setBookDepartTime(Date bookDepartTime) {
|
BookDepartTime = bookDepartTime;
|
}
|
|
public Date getDepartTime() {
|
return DepartTime;
|
}
|
|
public void setDepartTime(Date departTime) {
|
DepartTime = departTime;
|
}
|
|
public String getDeparture() {
|
return Departure;
|
}
|
|
public void setDeparture(String departure) {
|
Departure = departure;
|
}
|
|
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 Date getDestTime() {
|
return DestTime;
|
}
|
|
public void setDestTime(Date destTime) {
|
DestTime = destTime;
|
}
|
|
public String getDestination() {
|
return Destination;
|
}
|
|
public void setDestination(String destination) {
|
Destination = destination;
|
}
|
|
public Double getDestLongitude() {
|
return DestLongitude;
|
}
|
|
public void setDestLongitude(Double destLongitude) {
|
DestLongitude = destLongitude;
|
}
|
|
public Double getDestLatitude() {
|
return DestLatitude;
|
}
|
|
public void setDestLatitude(Double destLatitude) {
|
DestLatitude = destLatitude;
|
}
|
|
public Integer getEncrypt() {
|
return Encrypt;
|
}
|
|
public void setEncrypt(Integer encrypt) {
|
Encrypt = encrypt;
|
}
|
|
public Integer getDriveMile() {
|
return DriveMile;
|
}
|
|
public void setDriveMile(Integer driveMile) {
|
DriveMile = driveMile;
|
}
|
|
public Integer getDriveTime() {
|
return DriveTime;
|
}
|
|
public void setDriveTime(Integer driveTime) {
|
DriveTime = driveTime;
|
}
|
|
public Double getFactPrice() {
|
return FactPrice;
|
}
|
|
public void setFactPrice(Double factPrice) {
|
FactPrice = factPrice;
|
}
|
|
public Double getPrice() {
|
return Price;
|
}
|
|
public void setPrice(Double price) {
|
Price = price;
|
}
|
|
public Double getCashPrice() {
|
return CashPrice;
|
}
|
|
public void setCashPrice(Double cashPrice) {
|
CashPrice = cashPrice;
|
}
|
|
public String getLineName() {
|
return LineName;
|
}
|
|
public void setLineName(String lineName) {
|
LineName = lineName;
|
}
|
|
public Double getLinePrice() {
|
return LinePrice;
|
}
|
|
public void setLinePrice(Double linePrice) {
|
LinePrice = linePrice;
|
}
|
|
public Double getBenfitPrice() {
|
return BenfitPrice;
|
}
|
|
public void setBenfitPrice(Double benfitPrice) {
|
BenfitPrice = benfitPrice;
|
}
|
|
public Double getShareFuelFee() {
|
return ShareFuelFee;
|
}
|
|
public void setShareFuelFee(Double shareFuelFee) {
|
ShareFuelFee = shareFuelFee;
|
}
|
|
public Double getShareHighwayToll() {
|
return ShareHighwayToll;
|
}
|
|
public void setShareHighwayToll(Double shareHighwayToll) {
|
ShareHighwayToll = shareHighwayToll;
|
}
|
|
public Double getPassengerTip() {
|
return PassengerTip;
|
}
|
|
public void setPassengerTip(Double passengerTip) {
|
PassengerTip = passengerTip;
|
}
|
|
public Double getShareOther() {
|
return ShareOther;
|
}
|
|
public void setShareOther(Double shareOther) {
|
ShareOther = shareOther;
|
}
|
|
public Integer getPayState() {
|
return PayState;
|
}
|
|
public void setPayState(Integer payState) {
|
PayState = payState;
|
}
|
|
public Integer getPassengerNum() {
|
return PassengerNum;
|
}
|
|
public void setPassengerNum(Integer passengerNum) {
|
PassengerNum = passengerNum;
|
}
|
|
public Date getPayTime() {
|
return PayTime;
|
}
|
|
public void setPayTime(Date payTime) {
|
PayTime = payTime;
|
}
|
|
public Date getOrderMatchTime() {
|
return OrderMatchTime;
|
}
|
|
public void setOrderMatchTime(Date orderMatchTime) {
|
OrderMatchTime = orderMatchTime;
|
}
|
|
@Override
|
public String toString() {
|
return "SharePay{" +
|
"Address=" + Address +
|
", RouteId='" + RouteId + '\'' +
|
", OrderId='" + OrderId + '\'' +
|
", DriverPhone='" + DriverPhone + '\'' +
|
", LicenseId='" + LicenseId + '\'' +
|
", VehicleNo='" + VehicleNo + '\'' +
|
", FareType='" + FareType + '\'' +
|
", BookDepartTime=" + BookDepartTime +
|
", DepartTime=" + DepartTime +
|
", Departure='" + Departure + '\'' +
|
", DepLongitude=" + DepLongitude +
|
", DepLatitude=" + DepLatitude +
|
", DestTime=" + DestTime +
|
", Destination='" + Destination + '\'' +
|
", DestLongitude=" + DestLongitude +
|
", DestLatitude=" + DestLatitude +
|
", Encrypt=" + Encrypt +
|
", DriveMile=" + DriveMile +
|
", DriveTime=" + DriveTime +
|
", FactPrice=" + FactPrice +
|
", Price=" + Price +
|
", CashPrice=" + CashPrice +
|
", LineName='" + LineName + '\'' +
|
", LinePrice=" + LinePrice +
|
", BenfitPrice=" + BenfitPrice +
|
", ShareFuelFee=" + ShareFuelFee +
|
", ShareHighwayToll=" + ShareHighwayToll +
|
", PassengerTip=" + PassengerTip +
|
", ShareOther=" + ShareOther +
|
", PayState=" + PayState +
|
", PassengerNum=" + PassengerNum +
|
", PayTime=" + PayTime +
|
", OrderMatchTime=" + OrderMatchTime +
|
'}';
|
}
|
}
|