| | |
| | | import com.baomidou.mybatisplus.activerecord.Model; |
| | | import com.baomidou.mybatisplus.annotations.TableName; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | |
| | | /** |
| | | * 开始服务时间 |
| | | */ |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date startTime; |
| | | /** |
| | | * 起点地址 |
| | |
| | | * 下车时间 |
| | | */ |
| | | private Date getoffTime; |
| | | /** |
| | | * 上车地址 |
| | | */ |
| | | private String boardingAddress; |
| | | /** |
| | | * 上车经度 |
| | | */ |
| | | private String boardingLng; |
| | | /** |
| | | * 上车纬度 |
| | | */ |
| | | private String boardingLat; |
| | | /** |
| | | * 下车地址 |
| | | */ |
| | | private String debusAddress; |
| | | /** |
| | | * 下车经度 |
| | | */ |
| | | private String debusLng; |
| | | /** |
| | | * 下车纬度 |
| | | */ |
| | | private String debusLat; |
| | | /** |
| | | * 预估价 |
| | | */ |
| | |
| | | private BigDecimal discountAmount; |
| | | @ApiModelProperty(value = "实际里程(米)") |
| | | private Integer actualMileage; |
| | | |
| | | @ApiModelProperty(value = "是否已开票 1是 0否") |
| | | private Integer isInvoice; |
| | | |
| | | @ApiModelProperty(value = "用户手机号") |
| | | private String userPhone; |
| | | |
| | | @ApiModelProperty(value = "用户姓名") |
| | | private String userName; |
| | | |
| | | public String getUserPhone() { |
| | | return userPhone; |
| | | } |
| | | |
| | | public void setUserPhone(String userPhone) { |
| | | this.userPhone = userPhone; |
| | | } |
| | | |
| | | public String getUserName() { |
| | | return userName; |
| | | } |
| | | |
| | | public void setUserName(String userName) { |
| | | this.userName = userName; |
| | | } |
| | | |
| | | public Integer getIsInvoice() { |
| | | return isInvoice; |
| | | } |
| | | |
| | | public void setIsInvoice(Integer isInvoice) { |
| | | this.isInvoice = isInvoice; |
| | | } |
| | | |
| | | public Integer getActualMileage() { |
| | | return actualMileage; |
| | |
| | | this.estimatedPrice = estimatedPrice; |
| | | } |
| | | |
| | | public String getBoardingAddress() { |
| | | return boardingAddress; |
| | | } |
| | | |
| | | public void setBoardingAddress(String boardingAddress) { |
| | | this.boardingAddress = boardingAddress; |
| | | } |
| | | |
| | | public String getBoardingLng() { |
| | | return boardingLng; |
| | | } |
| | | |
| | | public void setBoardingLng(String boardingLng) { |
| | | this.boardingLng = boardingLng; |
| | | } |
| | | |
| | | public String getBoardingLat() { |
| | | return boardingLat; |
| | | } |
| | | |
| | | public void setBoardingLat(String boardingLat) { |
| | | this.boardingLat = boardingLat; |
| | | } |
| | | |
| | | public String getDebusAddress() { |
| | | return debusAddress; |
| | | } |
| | | |
| | | public void setDebusAddress(String debusAddress) { |
| | | this.debusAddress = debusAddress; |
| | | } |
| | | |
| | | public String getDebusLng() { |
| | | return debusLng; |
| | | } |
| | | |
| | | public void setDebusLng(String debusLng) { |
| | | this.debusLng = debusLng; |
| | | } |
| | | |
| | | public String getDebusLat() { |
| | | return debusLat; |
| | | } |
| | | |
| | | public void setDebusLat(String debusLat) { |
| | | this.debusLat = debusLat; |
| | | } |
| | | |
| | | public BigDecimal getOrderMoney() { |
| | | return orderMoney; |
| | | } |