Compare commits

...

1 Commits

Author SHA1 Message Date
余国健
bf2a135f00 增加两个订单结构体 2024-12-07 00:00:27 +08:00

View File

@@ -51,3 +51,11 @@ type OrderVoucher struct {
type OrderFinishedAfter struct { type OrderFinishedAfter struct {
ID uint `json:"id"` // 订单ID ID uint `json:"id"` // 订单ID
} }
type OrderUpdateSuccess struct {
ID uint `json:"id"` // 订单ID
}
type ThirdOrderRefund struct {
ID uint `json:"id"` // 订单ID
}