| | |
| | | private Integer cancelMidway; |
| | | @ApiModelProperty("备注") |
| | | private String remark; |
| | | @ApiModelProperty("超时取消时间") |
| | | private Long timeOutCancel; |
| | | @ApiModelProperty("司机超时时间") |
| | | private Long driverTimeOut; |
| | | private Integer driverTimeOutTime; |
| | | |
| | | @ApiModelProperty("司机是否超时(0=否,1=是)") |
| | | private Integer driverTimeOut; |
| | | |
| | | private String tripId; |
| | | |
| | |
| | | this.receipt = receipt; |
| | | } |
| | | |
| | | public Long getTimeOutCancel() { |
| | | return timeOutCancel; |
| | | public Integer getDriverTimeOutTime() { |
| | | return driverTimeOutTime; |
| | | } |
| | | |
| | | public void setTimeOutCancel(Long timeOutCancel) { |
| | | this.timeOutCancel = timeOutCancel; |
| | | public void setDriverTimeOutTime(Integer driverTimeOutTime) { |
| | | this.driverTimeOutTime = driverTimeOutTime; |
| | | } |
| | | |
| | | public Long getDriverTimeOut() { |
| | | public Integer getDriverTimeOut() { |
| | | return driverTimeOut; |
| | | } |
| | | |
| | | public void setDriverTimeOut(Long driverTimeOut) { |
| | | public void setDriverTimeOut(Integer driverTimeOut) { |
| | | this.driverTimeOut = driverTimeOut; |
| | | } |
| | | |
| | |
| | | orderWarpper.setCancelMidway(null != map.get("cancelMidway") ? Integer.valueOf(String.valueOf(map.get("cancelMidway"))) : 0); |
| | | orderWarpper.setTripId(null != map.get("tripId") ? String.valueOf(map.get("tripId")) : ""); |
| | | orderWarpper.setRemark(null != map.get("remark") ? String.valueOf(map.get("remark")) : ""); |
| | | orderWarpper.setTimeOutCancel(null != map.get("timeOutCancel") ? Long.valueOf(String.valueOf(map.get("timeOutCancel"))) : 0); |
| | | orderWarpper.setDriverTimeOut(null != map.get("driverTimeOut") ? Long.valueOf(String.valueOf(map.get("driverTimeOut"))) : 0); |
| | | orderWarpper.setDriverTimeOutTime(null != map.get("driverTimeOutTime") ? Integer.valueOf(String.valueOf(map.get("driverTimeOutTime"))) : 0); |
| | | orderWarpper.setDriverTimeOut(null != map.get("driverTimeOut") ? Integer.valueOf(String.valueOf(map.get("driverTimeOut"))) : 0); |
| | | list.add(orderWarpper); |
| | | } |
| | | } |