1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.kuanzhai.driver.bean;
|
| import com.google.gson.annotations.SerializedName;
|
| public class OrderSimpleData {
| public int orderId;
| public int orderType;
| @SerializedName("state")
| public int status;
| public int time;
| public String carpooling = "";
|
| // {
| // "code": 200,
| // "msg": "SUCCESS",
| // "method": "ORDER_STATUS",
| // "data": {
| // "orderId": 21414, #订单id
| // "orderType": 2, #订单类型(1=快车,2=出租车,3=城际,4=小件物流-同城,5=小件物流-跨城,6=包车)
| // "status": 1 #订单状态(1=待接单,2=待出发,3=待到达预约地点,4=待乘客上车,5=服务中,6=待支付,7=待评价,8=已完成,9=已取消,10=改派中)
| // 订单状态(1=待接单,2=待出发,3=待到达预约地点,4=待乘客上车,5=服务中,6=完成服务,7=待支付,8=待评价,9=已完成,10=已取消,11=改派中,12=取消待支付)
| // }
| }
|
|