bug fix 1018
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
package com.peanut.modules.book.vo.response;
|
||||
|
||||
import com.peanut.modules.book.entity.Trace;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description: TODO
|
||||
* @Author: Cauchy
|
||||
* @CreateTime: 2023/10/18
|
||||
*/
|
||||
@Data
|
||||
public class ExpressQueryResponseVo {
|
||||
/**
|
||||
* 订单详情 ID
|
||||
*/
|
||||
private Long orderDetailId;
|
||||
/**
|
||||
* 快递单号
|
||||
*/
|
||||
private String LogisticCode;
|
||||
/**
|
||||
* 轨迹
|
||||
*/
|
||||
private List<Trace> Traces;
|
||||
}
|
||||
@@ -0,0 +1,72 @@
|
||||
package com.peanut.modules.book.vo.response;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description: 快递查询相应 Order Value Object
|
||||
* @Author: Cauchy
|
||||
* @CreateTime: 2023/10/17
|
||||
*/
|
||||
@Data
|
||||
public class ExpressResponseOrderVo {
|
||||
/**
|
||||
* 快递单号
|
||||
*/
|
||||
private String LogisticCode;
|
||||
/**
|
||||
* 订单号
|
||||
*/
|
||||
private String OrderCode;
|
||||
/**
|
||||
* 快递公司代码
|
||||
*/
|
||||
private String ShipperCode;
|
||||
/**
|
||||
* 大头笔(官网文档)
|
||||
*/
|
||||
private String MarkDestination;
|
||||
/**
|
||||
* 签回单单号
|
||||
*/
|
||||
private String SignWaybillCode;
|
||||
/**
|
||||
* 始发地区域编码
|
||||
*/
|
||||
private String OriginCode;
|
||||
/**
|
||||
* 事发地名称
|
||||
*/
|
||||
private String OriginName;
|
||||
/**
|
||||
* 目的地区域编码
|
||||
*/
|
||||
private String DestinatioCode;
|
||||
/**
|
||||
* 目的地名称
|
||||
*/
|
||||
private String DestinatioName;
|
||||
/**
|
||||
* 分拣编码
|
||||
*/
|
||||
private String SortingCode;
|
||||
/**
|
||||
* 邮包编码
|
||||
*/
|
||||
private String PackageCode;
|
||||
/**
|
||||
* 集包地
|
||||
*/
|
||||
private String PackageName;
|
||||
/**
|
||||
* 目的地分拨
|
||||
*/
|
||||
private String DestinationAllocationCentre;
|
||||
/**
|
||||
* 配送产品类型
|
||||
*/
|
||||
private String TransType;
|
||||
/**
|
||||
* 运输方式
|
||||
*/
|
||||
private String TransportType;
|
||||
}
|
||||
Reference in New Issue
Block a user