bug fix
This commit is contained in:
@@ -15,7 +15,7 @@ public class ExpressQueryResponseVo {
|
||||
/**
|
||||
* 订单详情 ID
|
||||
*/
|
||||
private Long orderDetailId;
|
||||
private String expressCompanyCode;
|
||||
/**
|
||||
* 快递单号
|
||||
*/
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user