| | |
| | | @Excel(name = "目的地址") |
| | | private String destinationAddress; |
| | | |
| | | /** 出发地经度 */ |
| | | @Excel(name = "出发地经度") |
| | | private java.math.BigDecimal departureLongitude; |
| | | |
| | | /** 出发地纬度 */ |
| | | @Excel(name = "出发地纬度") |
| | | private java.math.BigDecimal departureLatitude; |
| | | |
| | | /** 目的地经度 */ |
| | | @Excel(name = "目的地经度") |
| | | private java.math.BigDecimal destinationLongitude; |
| | | |
| | | /** 目的地纬度 */ |
| | | @Excel(name = "目的地纬度") |
| | | private java.math.BigDecimal destinationLatitude; |
| | | |
| | | /** 预计公里数 */ |
| | | @Excel(name = "预计公里数") |
| | | private java.math.BigDecimal estimatedDistance; |
| | | |
| | | /** 计划开始时间 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @Excel(name = "计划开始时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | |
| | | return destinationAddress; |
| | | } |
| | | |
| | | public void setDepartureLongitude(java.math.BigDecimal departureLongitude) { |
| | | this.departureLongitude = departureLongitude; |
| | | } |
| | | |
| | | public java.math.BigDecimal getDepartureLongitude() { |
| | | return departureLongitude; |
| | | } |
| | | |
| | | public void setDepartureLatitude(java.math.BigDecimal departureLatitude) { |
| | | this.departureLatitude = departureLatitude; |
| | | } |
| | | |
| | | public java.math.BigDecimal getDepartureLatitude() { |
| | | return departureLatitude; |
| | | } |
| | | |
| | | public void setDestinationLongitude(java.math.BigDecimal destinationLongitude) { |
| | | this.destinationLongitude = destinationLongitude; |
| | | } |
| | | |
| | | public java.math.BigDecimal getDestinationLongitude() { |
| | | return destinationLongitude; |
| | | } |
| | | |
| | | public void setDestinationLatitude(java.math.BigDecimal destinationLatitude) { |
| | | this.destinationLatitude = destinationLatitude; |
| | | } |
| | | |
| | | public java.math.BigDecimal getDestinationLatitude() { |
| | | return destinationLatitude; |
| | | } |
| | | |
| | | public void setEstimatedDistance(java.math.BigDecimal estimatedDistance) { |
| | | this.estimatedDistance = estimatedDistance; |
| | | } |
| | | |
| | | public java.math.BigDecimal getEstimatedDistance() { |
| | | return estimatedDistance; |
| | | } |
| | | |
| | | public void setPlannedStartTime(Date plannedStartTime) { |
| | | this.plannedStartTime = plannedStartTime; |
| | | } |