package com.stylefeng.guns.modular.shunfeng.model.vo;
|
|
import java.util.Date;
|
|
/**
|
* 用户端订单详情
|
*/
|
public class OrderTaxiVo {
|
/*订单id*/
|
private Integer id;
|
/*订单号*/
|
private String orderNum;
|
/*状态*/
|
private Integer state;
|
/*起点*/
|
private String startName;
|
/*是否使用红包(1使用,2不使用)*/
|
private Integer isEnvelope;
|
/*红包金额*/
|
private Double money;
|
/*终点*/
|
private String endName;
|
/*下单时间*/
|
private Long addTime;
|
/*起点经度*/
|
private Double startLon;
|
/*起点纬度*/
|
private Double startLat;
|
/*终点经度*/
|
private Double endLon;
|
/*终点纬度*/
|
private Double endLat;
|
/*司机头像*/
|
private String headImg="";
|
/*司机名称*/
|
private String name="";
|
/*车牌*/
|
private String carNum="";
|
/*车辆品牌*/
|
private String carType="";
|
/*电话*/
|
private String phone="";
|
/*总完成单数*/
|
private Integer totalOrders=0;
|
/*司机评分*/
|
private Double evaluateScore=0d;
|
/*司机位置经度*/
|
private Double lon=0d;
|
/*司机位置 纬度*/
|
private Double lat=0d;
|
/*预计到达时间*/
|
private Integer arrivalTime=0;
|
/*距离*/
|
private Double distance=0d;
|
/*司机到达预约地点时间*/
|
private Long arriveTime;
|
/*是否评价(1未评价,2已评价)*/
|
private Integer isEvaluate;
|
/*司机id*/
|
private Integer driverId=0;
|
/*评价分数*/
|
private Integer score;
|
/*评价内容*/
|
private String content;
|
|
/**
|
* 订单取消状态(1有效,2无效)
|
*/
|
private Integer cancelState;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getOrderNum() {
|
return orderNum;
|
}
|
|
public void setOrderNum(String orderNum) {
|
this.orderNum = orderNum;
|
}
|
|
public Integer getState() {
|
return state;
|
}
|
|
public void setState(Integer state) {
|
this.state = state;
|
}
|
|
public Double getDistance() {
|
return distance;
|
}
|
|
public void setDistance(Double distance) {
|
this.distance = distance;
|
}
|
|
public String getStartName() {
|
return startName;
|
}
|
|
public void setStartName(String startName) {
|
this.startName = startName;
|
}
|
|
public String getEndName() {
|
return endName;
|
}
|
|
public void setEndName(String endName) {
|
this.endName = endName;
|
}
|
|
public Long getAddTime() {
|
return addTime;
|
}
|
|
public void setAddTime(Long addTime) {
|
this.addTime = addTime;
|
}
|
|
public Double getStartLon() {
|
return startLon;
|
}
|
|
public void setStartLon(Double startLon) {
|
this.startLon = startLon;
|
}
|
|
public Double getStartLat() {
|
return startLat;
|
}
|
|
public void setStartLat(Double startLat) {
|
this.startLat = startLat;
|
}
|
|
public Double getEndLon() {
|
return endLon;
|
}
|
|
public void setEndLon(Double endLon) {
|
this.endLon = endLon;
|
}
|
|
public Double getEndLat() {
|
return endLat;
|
}
|
|
public void setEndLat(Double endLat) {
|
this.endLat = endLat;
|
}
|
|
public Integer getArrivalTime() {
|
return arrivalTime;
|
}
|
|
public void setArrivalTime(Integer arrivalTime) {
|
this.arrivalTime = arrivalTime;
|
}
|
|
public String getHeadImg() {
|
return headImg;
|
}
|
|
public void setHeadImg(String headImg) {
|
this.headImg = headImg;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getCarNum() {
|
return carNum;
|
}
|
|
public void setCarNum(String carNum) {
|
this.carNum = carNum;
|
}
|
|
public String getCarType() {
|
return carType;
|
}
|
|
public void setCarType(String carType) {
|
this.carType = carType;
|
}
|
|
public String getPhone() {
|
return phone;
|
}
|
|
public void setPhone(String phone) {
|
this.phone = phone;
|
}
|
|
public Integer getTotalOrders() {
|
return totalOrders;
|
}
|
|
public void setTotalOrders(Integer totalOrders) {
|
this.totalOrders = totalOrders;
|
}
|
|
public Double getLon() {
|
return lon;
|
}
|
|
public void setLon(Double lon) {
|
this.lon = lon;
|
}
|
|
public Double getLat() {
|
return lat;
|
}
|
|
public void setLat(Double lat) {
|
this.lat = lat;
|
}
|
|
public Long getArriveTime() {
|
return arriveTime;
|
}
|
|
public void setArriveTime(Long arriveTime) {
|
this.arriveTime = arriveTime;
|
}
|
|
public Integer getIsEvaluate() {
|
return isEvaluate;
|
}
|
|
public void setIsEvaluate(Integer isEvaluate) {
|
this.isEvaluate = isEvaluate;
|
}
|
|
public Double getEvaluateScore() {
|
return evaluateScore;
|
}
|
|
public void setEvaluateScore(Double evaluateScore) {
|
this.evaluateScore = evaluateScore;
|
}
|
|
public Integer getIsEnvelope() {
|
return isEnvelope;
|
}
|
|
public void setIsEnvelope(Integer isEnvelope) {
|
this.isEnvelope = isEnvelope;
|
}
|
|
public Double getMoney() {
|
return money;
|
}
|
|
public void setMoney(Double money) {
|
this.money = money;
|
}
|
|
public Integer getDriverId() {
|
return driverId;
|
}
|
|
public void setDriverId(Integer driverId) {
|
this.driverId = driverId;
|
}
|
|
public Integer getScore() {
|
return score;
|
}
|
|
public void setScore(Integer score) {
|
this.score = score;
|
}
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public Integer getCancelState() {
|
return cancelState;
|
}
|
|
public void setCancelState(Integer cancelState) {
|
this.cancelState = cancelState;
|
}
|
}
|