|
@@ -1,9 +1,6 @@
|
|
|
package com.caimei.modules.order.entity;
|
|
|
|
|
|
|
|
|
-import com.alibaba.fastjson.JSONArray;
|
|
|
-
|
|
|
-import java.beans.Transient;
|
|
|
import java.util.Date;
|
|
|
import java.util.List;
|
|
|
|
|
@@ -12,7 +9,7 @@ import java.util.List;
|
|
|
* @date 2018-08-13
|
|
|
* @description 物流信息表
|
|
|
*/
|
|
|
-public class LogisticsInformation{
|
|
|
+public class LogisticsInformation {
|
|
|
private Integer logisticsBatchID; // 发货批次表ID
|
|
|
private String type; // 类型:1 采美365 2 呵呵商城 3 大宗采购'
|
|
|
private Integer shopOrderID;
|
|
@@ -26,8 +23,6 @@ public class LogisticsInformation{
|
|
|
private Integer shopID; //供应商ID
|
|
|
private String remarks; //备注
|
|
|
private Date updateDate; //最后更新时间
|
|
|
-
|
|
|
- // -----------------
|
|
|
private List<LogisticsDetailVo> logisticsDetailVos; // 格式化后的物流跟踪信息
|
|
|
|
|
|
public Integer getLogisticsBatchID() {
|
|
@@ -134,9 +129,8 @@ public class LogisticsInformation{
|
|
|
this.shopID = shopID;
|
|
|
}
|
|
|
|
|
|
- @Transient
|
|
|
public List<LogisticsDetailVo> getLogisticsDetailVos() {
|
|
|
- return JSONArray.parseArray(getInfo(), LogisticsDetailVo.class);
|
|
|
+ return logisticsDetailVos;
|
|
|
}
|
|
|
|
|
|
public void setLogisticsDetailVos(List<LogisticsDetailVo> logisticsDetailVos) {
|