lmw
2025-04-14 0361f47762f9958f2ec91fdb62bfc98de4e162a6
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.xianning.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 audioLinkUrl;  //有此字段代表电召订单,只播放语音
 
//    {
//    "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=取消待支付)
//    }
}