增加两个订单结构体

This commit is contained in:
余国健 2024-12-07 00:00:27 +08:00
parent 4ec702af0b
commit bf2a135f00

View File

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