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