package com.best.javaSdk.kdTraceQuery.response; public class TraceLogs { private String mailNo; private String txLogisticId; private double weight; 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; } }