| | |
| | | private Integer isFrozen; |
| | | @ApiModelProperty("中途取消(0=否,1=是)") |
| | | private Integer cancelMidway; |
| | | |
| | | private String tripId; |
| | | |
| | | public Integer getOrderId() { |
| | | return orderId; |
| | |
| | | orderWarpper.setReceipt(null != map.get("receipt") ? String.valueOf(map.get("receipt")) : ""); |
| | | orderWarpper.setIsFrozen(null != map.get("isFrozen") ? Integer.valueOf(String.valueOf(map.get("isFrozen"))) : 1); |
| | | 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")) : ""); |
| | | list.add(orderWarpper); |
| | | } |
| | | } |
| | |
| | | this.cancelMidway = cancelMidway; |
| | | } |
| | | |
| | | public String getTripId() { |
| | | return tripId; |
| | | } |
| | | |
| | | public void setTripId(String tripId) { |
| | | this.tripId = tripId; |
| | | } |
| | | |
| | | @Override |
| | | public int compareTo(Object o) { |
| | | if (o instanceof OrderWarpper) { |