| package com.matrix.system.shopXcx.api.vo; | 
|   | 
| import java.io.Serializable; | 
| import java.util.List; | 
| import java.util.Map; | 
|   | 
|   | 
| /** | 
|  * @description 快递鸟物流信息接收对象 | 
|  * @author pengliang | 
|  * @date 2019-06-17 17:54 | 
|  */ | 
| public class LogisticsInfoVo implements Serializable { | 
|   | 
|     /** | 
|      * 快递单号 | 
|      */ | 
|     private String logisticCode; | 
|   | 
|     /** | 
|      * 快递公司编码 | 
|      */ | 
|     private String shipperCode; | 
|   | 
|     /** | 
|      * 用户 ID | 
|      */ | 
|     private String eBusinessID; | 
|   | 
|     /** | 
|      * 成功与否(true/false) | 
|      */ | 
|     private boolean success; | 
|   | 
|     /** | 
|      * 物流状态 : | 
|      * 0-无轨迹 | 
|      * 1-已揽收 | 
|      * 2-在途中 | 
|      * 3-签收 | 
|      * 4-问题件 | 
|      */ | 
|     private String state; | 
|   | 
|     /** | 
|      * 失败原因 | 
|      */ | 
|     private String reason; | 
|   | 
|     /** | 
|      * 物流轨迹信息 | 
|      */ | 
|     private List<Map<String,String>> traces; | 
|   | 
|     public String getLogisticCode() { | 
|         return logisticCode; | 
|     } | 
|   | 
|     public void setLogisticCode(String logisticCode) { | 
|         this.logisticCode = logisticCode; | 
|     } | 
|   | 
|     public String getShipperCode() { | 
|         return shipperCode; | 
|     } | 
|   | 
|     public void setShipperCode(String shipperCode) { | 
|         this.shipperCode = shipperCode; | 
|     } | 
|   | 
|     public String geteBusinessID() { | 
|         return eBusinessID; | 
|     } | 
|   | 
|     public void seteBusinessID(String eBusinessID) { | 
|         this.eBusinessID = eBusinessID; | 
|     } | 
|   | 
|     public boolean isSuccess() { | 
|         return success; | 
|     } | 
|   | 
|     public void setSuccess(boolean success) { | 
|         this.success = success; | 
|     } | 
|   | 
|     public String getState() { | 
|         return state; | 
|     } | 
|   | 
|     public void setState(String state) { | 
|         this.state = state; | 
|     } | 
|   | 
|     public String getReason() { | 
|         return reason; | 
|     } | 
|   | 
|     public void setReason(String reason) { | 
|         this.reason = reason; | 
|     } | 
|   | 
|     public List<Map<String, String>> getTraces() { | 
|         return traces; | 
|     } | 
|   | 
|     public void setTraces(List<Map<String, String>> traces) { | 
|         this.traces = traces; | 
|     } | 
| } |