package com.best.javaSdk.kdTraceQuery.response;
|
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
|
@ApiModel(value = "Trace", description = "信息返回类")
|
public class Trace {
|
@ApiModelProperty(value = "收件人类型", example = "60850007041815")
|
private String receiverType;
|
@ApiModelProperty(value = "收件人姓名", example = "60850007041815")
|
private String receiverName;
|
@ApiModelProperty(value = "收件人电子签名", example = "60850007041815")
|
private String receiverSignature;
|
@ApiModelProperty(value = "收件包裹图片", example = "60850007041815")
|
private String receiverImage;
|
@ApiModelProperty(value = "包裹状态 ", example = "60850007041815")
|
private String packageStatusCode;
|
@ApiModelProperty(value = "包裹状态描述 ", example = "60850007041815")
|
private String statusCodeDesc;
|
@ApiModelProperty(value = "扫描时间 ", example = "60850007041815")
|
private String operateTime;
|
@ApiModelProperty(value = "当前城市 ", example = "60850007041815")
|
private String currentCity;
|
@ApiModelProperty(value = "目标城市 ", example = "60850007041815")
|
private String nextCity;
|
@ApiModelProperty(value = "备注 ", example = "60850007041815")
|
private String remark;
|
|
public String getReceiverType()
|
{
|
return this.receiverType;
|
}
|
|
public void setReceiverType(String value)
|
{
|
this.receiverType = value;
|
}
|
|
public String getReceiverName()
|
{
|
return this.receiverName;
|
}
|
|
public void setReceiverName(String value)
|
{
|
this.receiverName = value;
|
}
|
|
public String getReceiverSignature()
|
{
|
return this.receiverSignature;
|
}
|
|
public void setReceiverSignature(String value)
|
{
|
this.receiverSignature = value;
|
}
|
|
public String getReceiverImage()
|
{
|
return this.receiverImage;
|
}
|
|
public void setReceiverImage(String value)
|
{
|
this.receiverImage = value;
|
}
|
|
public String getPackageStatusCode()
|
{
|
return this.packageStatusCode;
|
}
|
|
public void setPackageStatusCode(String value)
|
{
|
this.packageStatusCode = value;
|
}
|
|
public String getStatusCodeDesc()
|
{
|
return this.statusCodeDesc;
|
}
|
|
public void setStatusCodeDesc(String value)
|
{
|
this.statusCodeDesc = value;
|
}
|
|
public String getOperateTime()
|
{
|
return this.operateTime;
|
}
|
|
public void setOperateTime(String value)
|
{
|
this.operateTime = value;
|
}
|
|
public String getCurrentCity()
|
{
|
return this.currentCity;
|
}
|
|
public void setCurrentCity(String value)
|
{
|
this.currentCity = value;
|
}
|
|
public String getNextCity()
|
{
|
return this.nextCity;
|
}
|
|
public void setNextCity(String value)
|
{
|
this.nextCity = value;
|
}
|
|
public String getRemark()
|
{
|
return this.remark;
|
}
|
|
public void setRemark(String value)
|
{
|
this.remark = value;
|
}
|
|
|
}
|