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
package com.best.javaSdk.kdTraceQuery.response;
 
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
@ApiModel(value = "TraceLogs", description = "信息返回类")
public class TraceLogs {
    @ApiModelProperty(value = "运单号", example = "60850007041815")
    private String mailNo;
    @ApiModelProperty(value = "订单号", example = "60850007041815")
    private String txLogisticId;
    @ApiModelProperty(value = "重量,单位 kg ", example = "60850007041815")
    private double weight;
    @ApiModelProperty(value = "快递物流详情", example = "60850007041815")
    private Traces traces;
 
    public String getMailNo()
    {
        return this.mailNo;
    }
 
    public void setMailNo(String value)
    {
        this.mailNo = value;
    }
 
    public String getTxLogisticId()
    {
        return this.txLogisticId;
    }
 
    public void setTxLogisticId(String value)
    {
        this.txLogisticId = value;
    }
 
    public double getWeight()
    {
        return this.weight;
    }
 
    public void setWeight(double value)
    {
        this.weight = value;
    }
 
    public Traces getTraces()
    {
        return this.traces;
    }
 
    public void setTraces(Traces value)
    {
        this.traces = value;
    }
 
 
}