| package com.matrix.system.shopXcx.bean; | 
|   | 
| import com.matrix.core.pojo.EntityDTO; | 
| import com.matrix.core.anotations.Extend; | 
|   | 
| /** | 
|  * @description 物流信息表 | 
|  * @author pengliang | 
|  * @date 2019-06-17 17:54 | 
|  */ | 
| public class ShopLogisticsInfo  extends EntityDTO{ | 
|     @Extend | 
|     private static final long serialVersionUID = 1L;  | 
|   | 
|      | 
|     /** | 
|      * 主键 | 
|      */ | 
|     private Integer  id; | 
|              | 
|      | 
|     /** | 
|      * 时间 | 
|      */ | 
|     private String logisticsTime; | 
|              | 
|      | 
|     /** | 
|      * 描述 | 
|      */ | 
|     private String  describe; | 
|              | 
|      | 
|     /** | 
|      * 发货信息ID | 
|      */ | 
|     private Integer  delieryId; | 
|   | 
|     /** | 
|      * 物流状态 | 
|      * 0-无轨迹 | 
|      * 1-已揽收 | 
|      * 2-在途中 | 
|      * 3-签收 | 
|      * 4-问题件 | 
|      */ | 
|     private Integer state; | 
|     private Long companyId; | 
|     public Long getCompanyId() { | 
|         return companyId; | 
|     } | 
|   | 
|     public void setCompanyId(Long companyId) { | 
|         this.companyId = companyId; | 
|     } | 
|   | 
|     public Integer getId() { | 
|         return id; | 
|     } | 
|         | 
|        public void setId(Integer id) { | 
|         this.id=id; | 
|     } | 
|   | 
|   | 
|     public String getLogisticsTime() { | 
|         return logisticsTime; | 
|     } | 
|   | 
|     public void setLogisticsTime(String logisticsTime) { | 
|         this.logisticsTime = logisticsTime; | 
|     } | 
|   | 
|     public String getDescribe() { | 
|         return describe; | 
|     } | 
|         | 
|        public void setDescribe(String describe) { | 
|         this.describe=describe; | 
|     } | 
|         | 
|   | 
|     public Integer getDelieryId() { | 
|         return delieryId; | 
|     } | 
|         | 
|        public void setDelieryId(Integer delieryId) { | 
|         this.delieryId=delieryId; | 
|     } | 
|   | 
|     public Integer getState() { | 
|         return state; | 
|     } | 
|   | 
|     public void setState(Integer state) { | 
|         this.state = state; | 
|     } | 
| } |