1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.zhaoyang.driver.bean;
|
| import com.google.gson.annotations.SerializedName;
|
| public class OrderResData {
| public int orderId;
| public int orderType;
| @SerializedName("state")
| public int time;
|
| // {
| // "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=改派中)
| // }
| }
|
|