common_structure/order.go
yuguojian 76ae3b2cb0 init
2024-12-06 16:03:01 +08:00

46 lines
824 B
Go

package rabbitmq_common_structure
type OrderCreate struct {
ID string `json:"id"` // 订单ID
}
type OrderClose struct {
ID string `json:"id"` // 订单ID
}
type OrderPay struct {
ID string `json:"id"` // 订单ID
}
type OrderSent struct {
ID string `json:"id"` // 订单ID
}
type CloseRefund struct {
ID string `json:"id"` // 订单ID
}
type OrderFinished struct {
ID string `json:"id"` // 订单ID
}
type OrderReconciliationPrecheck struct {
ID string `json:"id"` // 订单ID
}
type OrderReconciliation struct {
ID string `json:"id"` // 订单ID
}
type OrderConsumptionAward struct {
ID string `json:"id"` // 订单ID
}
type OrderConsumptionAwardRedPacketQualification struct {
ID string `json:"id"` // 订单ID
}
type OrderConsumptionAwardRedPacketMoney struct {
ID string `json:"id"` // 订单ID
}