bug fix
This commit is contained in:
@@ -1,12 +1,27 @@
|
||||
package com.peanut.modules.book.vo;
|
||||
|
||||
import com.peanut.modules.book.entity.Trace;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @Description: TODO
|
||||
* @Author: Cauchy
|
||||
* @CreateTime: 2023/10/17
|
||||
* @CreateTime: 2023/10/18
|
||||
*/
|
||||
@Data
|
||||
public class ExpressQueryResponseVo {
|
||||
/**
|
||||
* 订单详情 ID
|
||||
*/
|
||||
private Long orderDetailId;
|
||||
/**
|
||||
* 快递单号
|
||||
*/
|
||||
private String LogisticCode;
|
||||
/**
|
||||
* 轨迹
|
||||
*/
|
||||
private List<Trace> Traces;
|
||||
}
|
||||
|
||||
@@ -13,4 +13,60 @@ 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;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,40 @@
|
||||
package com.peanut.modules.book.vo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* @Description: 修改地址 Vo
|
||||
* @Author: Cauchy
|
||||
* @CreateTime: 2023/10/18
|
||||
*/
|
||||
@Data
|
||||
public class ShippingAddressRequestVo {
|
||||
/**
|
||||
* 订单 ID
|
||||
*/
|
||||
private Integer orderId;
|
||||
/**
|
||||
* 省份
|
||||
*/
|
||||
private String province;
|
||||
/**
|
||||
* 城市
|
||||
*/
|
||||
private String city;
|
||||
/**
|
||||
* 县
|
||||
*/
|
||||
private String county;
|
||||
/**
|
||||
* 地址
|
||||
*/
|
||||
private String address;
|
||||
/**
|
||||
* 收货人姓名
|
||||
*/
|
||||
private String name;
|
||||
/**
|
||||
* 电话
|
||||
*/
|
||||
private String mobile;
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
package com.peanut.modules.book.vo;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.peanut.modules.book.entity.BuyOrderEntity;
|
||||
import com.peanut.modules.book.entity.BuyOrder;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
@@ -32,5 +32,5 @@ public class UserOrderVo {
|
||||
private String isMerge = "";
|
||||
|
||||
|
||||
public List<BuyOrderEntity> orderList;
|
||||
public List<BuyOrder> orderList;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user