package com.best.javaSdk.kdTraceQuery.response; public class Trace { private String receiverType; private String receiverName; private String receiverSignature; private String receiverImage; private String packageStatusCode; private String statusCodeDesc; private String operateTime; private String currentCity; private String nextCity; 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; } }