modify address

This commit is contained in:
Cauchy
2023-10-20 14:47:19 +08:00
parent 62ea0482a3
commit e25d66878e
3 changed files with 45 additions and 1 deletions

View File

@@ -29,7 +29,7 @@ public class UserOrderVo {
/**
* 是否合并
*/
private String isMerge = "";
private String isMerge;
public List<BuyOrder> orderList;

View File

@@ -0,0 +1,36 @@
package com.peanut.modules.book.vo.request;
import lombok.Data;
/**
* @Description: 修改地址 Value Object
* @Author: Cauchy
* @CreateTime: 2023/10/20
*/
@Data
public class ModifyOrderAddressRequestVo {
/**
* 订单号
*/
private String orderSn;
/**
* 省
*/
private String province;
/**
* 市
*/
private String city;
/**
* 区县
*/
private String county;
/**
* 收货人姓名
*/
private String consigneeName;
/**
* 收货人电话
*/
private String consigneeMobile;
}