fix:购物车下单

This commit is contained in:
momo
2023-09-19 13:56:59 +08:00
parent 832440a58e
commit 12085dca8f
3 changed files with 23 additions and 4 deletions

View File

@@ -22,10 +22,11 @@ type NewFsOrder struct {
// 订单详情
type OrderDetail struct {
DeliveryAddress *OrderAddress `json:"delivery_address"` // 收货地址
OrderAmount OrderAmount `json:"order_amount"` // 订单金额
OrderInfo OrderInfo `json:"order_info"` // 订单信息
OrderProduct []OrderProduct `json:"order_product"` // 订单商品
DeliveryAddress *OrderAddress `json:"delivery_address"` // 收货地址
OrderAmount OrderAmount `json:"order_amount"` // 订单金额
OrderInfo OrderInfo `json:"order_info"` // 订单信息
OrderProduct []OrderProduct `json:"order_product"` // 订单商品
PayStatus constants.OrderPayStatusCode `json:"pay_status"` // 支付状态
}
// 收货地址