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; public List getTrace() { return this.trace; } public void setTrace(List value) { this.trace = value; } }