增加红包回退结构体

This commit is contained in:
吕翠丽 2024-12-17 15:16:52 +08:00
parent e0f73fc058
commit 88dd6fbdf5

View File

@ -69,3 +69,8 @@ type OrderUpdateSuccess struct {
type ThirdOrderRefund struct {
ID uint `json:"id"` // 订单ID
}
type RedPacketRefund struct {
ID uint `json:"id"` // 订单ID
OrderProductsID uint `json:"order_products_id"` // 订单商品ID
}