KKSU
2024-11-21 80fd9e3da4b45285c29cdb380ce743202b0c2af4
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
111
112
113
114
115
116
117
118
package com.best.javaSdk.kdTraceQuery.response;
 
 
 
public class Trace {
    private String receiverType;
    private String receiverName;
    private String receiverSignature;
    private String receiverImage;
    private String packageStatusCode;
    private String statusCodeDesc;
    private String operateTime;
    private String currentCity;
    private String nextCity;
    private String remark;
 
    public String getReceiverType()
    {
        return this.receiverType;
    }
 
    public void setReceiverType(String value)
    {
        this.receiverType = value;
    }
 
    public String getReceiverName()
    {
        return this.receiverName;
    }
 
    public void setReceiverName(String value)
    {
        this.receiverName = value;
    }
 
    public String getReceiverSignature()
    {
        return this.receiverSignature;
    }
 
    public void setReceiverSignature(String value)
    {
        this.receiverSignature = value;
    }
 
    public String getReceiverImage()
    {
        return this.receiverImage;
    }
 
    public void setReceiverImage(String value)
    {
        this.receiverImage = value;
    }
 
    public String getPackageStatusCode()
    {
        return this.packageStatusCode;
    }
 
    public void setPackageStatusCode(String value)
    {
        this.packageStatusCode = value;
    }
 
    public String getStatusCodeDesc()
    {
        return this.statusCodeDesc;
    }
 
    public void setStatusCodeDesc(String value)
    {
        this.statusCodeDesc = value;
    }
 
    public String getOperateTime()
    {
        return this.operateTime;
    }
 
    public void setOperateTime(String value)
    {
        this.operateTime = value;
    }
 
    public String getCurrentCity()
    {
        return this.currentCity;
    }
 
    public void setCurrentCity(String value)
    {
        this.currentCity = value;
    }
 
    public String getNextCity()
    {
        return this.nextCity;
    }
 
    public void setNextCity(String value)
    {
        this.nextCity = value;
    }
 
    public String getRemark()
    {
        return this.remark;
    }
 
    public void setRemark(String value)
    {
        this.remark = value;
    }
 
 
}