This commit is contained in:
Cauchy
2023-10-24 10:17:40 +08:00
parent 167d2de1bd
commit 7c9540f3ae
21 changed files with 387 additions and 295 deletions

View File

@@ -16,15 +16,15 @@ public class ShippingAddressRequestVo {
/**
* 省份
*/
private String province;
private String provinceCode;
/**
* 城市
*/
private String city;
private String cityCode;
/**
* 县
*/
private String county;
private String countyCode;
/**
* 地址
*/

View File

@@ -15,7 +15,7 @@ public class ExpressQueryResponseVo {
/**
* 订单详情 ID
*/
private Long orderDetailId;
private String expressCompanyCode;
/**
* 快递单号
*/

View File

@@ -0,0 +1,36 @@
package com.peanut.modules.book.vo.response;
import lombok.Data;
/**
* @Description: 订单地址查询响应 Value Object
* @Author: Cauchy
* @CreateTime: 2023/10/24
*/
@Data
public class OrderAddressResponseVo {
/**
* 省份
*/
private String provinceCode;
/**
* 市
*/
private String cityCode;
/**
* 区
*/
private String countyCode;
/**
* 收货人姓名
*/
private String consigneeName;
/**
* 收货人电话
*/
private String consigneeMobile;
/**
* 详细地址
*/
private String detailAddress;
}