订单发货通知修改商品id为订单商品id

This commit is contained in:
yuguojian 2024-12-09 15:27:41 +08:00
parent 777f826a32
commit 8d6f2b31f2

View File

@ -22,8 +22,8 @@ type OrderPay struct {
}
type OrderSent struct {
ID uint `json:"id"` // 订单ID
ProductID uint `json:"product_id"` // 商品ID
ID uint `json:"id"` // 订单ID
OrderProductsID uint `json:"order_products_id"` // 订单商品ID
}
type OrderCloseRefund struct {