common_structure/order.go
2024-12-07 00:00:27 +08:00

62 lines
1.0 KiB
Go

package rabbitmq_common_structure
type OrderCreate struct {
ID uint `json:"id"` // 订单ID
}
type OrderClose struct {
ID uint `json:"id"` // 订单ID
}
type OrderPay struct {
ID uint `json:"id"` // 订单ID
}
type OrderSent struct {
ID uint `json:"id"` // 订单ID
}
type OrderCloseRefund struct {
ID uint `json:"id"` // 订单ID
}
type OrderFinished struct {
ID uint `json:"id"` // 订单ID
}
type OrderReconciliationPrecheck struct {
ID uint `json:"id"` // 订单ID
}
type OrderReconciliation struct {
ID uint `json:"id"` // 订单ID
}
type OrderConsumptionAward struct {
ID uint `json:"id"` // 订单ID
}
type OrderConsumptionAwardRedPacketQualification struct {
ID uint `json:"id"` // 订单ID
}
type OrderConsumptionAwardRedPacketMoney struct {
ID uint `json:"id"` // 订单ID
}
type OrderVoucher struct {
ID uint `json:"id"` // 订单ID
}
type OrderFinishedAfter struct {
ID uint `json:"id"` // 订单ID
}
type OrderUpdateSuccess struct {
ID uint `json:"id"` // 订单ID
}
type ThirdOrderRefund struct {
ID uint `json:"id"` // 订单ID
}