KKSU
2024-11-26 82f0db2e7ce215c51b5abefbebe6e3b4607761b6
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
119
120
121
122
123
124
125
126
127
128
129
130
131
package com.best.javaSdk.kdTraceQuery.response;
 
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
@ApiModel(value = "Trace", description = "信息返回类")
public class Trace {
    @ApiModelProperty(value = "收件人类型", example = "60850007041815")
    private String receiverType;
    @ApiModelProperty(value = "收件人姓名", example = "60850007041815")
    private String receiverName;
    @ApiModelProperty(value = "收件人电子签名", example = "60850007041815")
    private String receiverSignature;
    @ApiModelProperty(value = "收件包裹图片", example = "60850007041815")
    private String receiverImage;
    @ApiModelProperty(value = "包裹状态 ", example = "60850007041815")
    private String packageStatusCode;
    @ApiModelProperty(value = "包裹状态描述 ", example = "60850007041815")
    private String statusCodeDesc;
    @ApiModelProperty(value = "扫描时间  ", example = "60850007041815")
    private String operateTime;
    @ApiModelProperty(value = "当前城市 ", example = "60850007041815")
    private String currentCity;
    @ApiModelProperty(value = "目标城市 ", example = "60850007041815")
    private String nextCity;
    @ApiModelProperty(value = "备注 ", example = "60850007041815")
    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;
    }
 
 
}