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;
|
}
|
|
}
|