jyy
2021-04-09 1443f8eb9f3b001e84f101852aa5f6ec7f49f4c9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
package com.matrix.system.shopXcx.api.vo;
 
import java.io.Serializable;
import java.util.List;
import java.util.Map;
 
 
/**
 * @description 快递鸟物流信息接收对象
 * @author pengliang
 * @date 2019-06-17 17:54
 */
public class LogisticsInfoVo implements Serializable {
 
    /**
     * 快递单号
     */
    private String logisticCode;
 
    /**
     * 快递公司编码
     */
    private String shipperCode;
 
    /**
     * 用户 ID
     */
    private String eBusinessID;
 
    /**
     * 成功与否(true/false)
     */
    private boolean success;
 
    /**
     * 物流状态 :
     * 0-无轨迹
     * 1-已揽收
     * 2-在途中
     * 3-签收
     * 4-问题件
     */
    private String state;
 
    /**
     * 失败原因
     */
    private String reason;
 
    /**
     * 物流轨迹信息
     */
    private List<Map<String,String>> traces;
 
    public String getLogisticCode() {
        return logisticCode;
    }
 
    public void setLogisticCode(String logisticCode) {
        this.logisticCode = logisticCode;
    }
 
    public String getShipperCode() {
        return shipperCode;
    }
 
    public void setShipperCode(String shipperCode) {
        this.shipperCode = shipperCode;
    }
 
    public String geteBusinessID() {
        return eBusinessID;
    }
 
    public void seteBusinessID(String eBusinessID) {
        this.eBusinessID = eBusinessID;
    }
 
    public boolean isSuccess() {
        return success;
    }
 
    public void setSuccess(boolean success) {
        this.success = success;
    }
 
    public String getState() {
        return state;
    }
 
    public void setState(String state) {
        this.state = state;
    }
 
    public String getReason() {
        return reason;
    }
 
    public void setReason(String reason) {
        this.reason = reason;
    }
 
    public List<Map<String, String>> getTraces() {
        return traces;
    }
 
    public void setTraces(List<Map<String, String>> traces) {
        this.traces = traces;
    }
}