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
package com.best.javaSdk.kdTraceQuery.response;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
import java.util.List;
 
 
@ApiModel(value = "Traces", description = "信息返回类")
public class Traces {
    @ApiModelProperty(value = "快递物流详情列表", example = "60850007041815")
    private List<Trace> trace;
 
    public List<Trace>  getTrace()
    {
        return this.trace;
    }
 
    public void setTrace(List<Trace>  value)
    {
        this.trace = value;
    }
 
}