Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
12617dbaf7 | ||
7d54fbd31d | |||
![]() |
f845aee1de | ||
1412fc67be | |||
![]() |
c25a65488e |
@@ -14,6 +14,7 @@ const (
|
||||
OrderCloseTypeUser OrderCloseType = 50 // 用户主动关闭
|
||||
OrderCloseTypeMerchantCancel OrderCloseType = 60 //商家取消订单关闭
|
||||
OrderCloseTypeDeliveryTimeout OrderCloseType = 70 //发货超时关闭
|
||||
OrderCloseTypePaymentFailed OrderCloseType = 80 //创建支付失败
|
||||
|
||||
)
|
||||
|
||||
|
15
rabbitmq_pay.go
Normal file
15
rabbitmq_pay.go
Normal file
@@ -0,0 +1,15 @@
|
||||
package common_structure
|
||||
|
||||
type PayNotify struct {
|
||||
PayID uint `json:"pay_id"` // 支付ID
|
||||
PayNo string `json:"pay_no"` // 支付单号
|
||||
RemainExecNum int `json:"num"` // 剩余执行次数
|
||||
RemainRepeatNum int `json:"repeat_num"` // 剩余重复执行次数
|
||||
}
|
||||
|
||||
type HelibaoSettlementQuery struct {
|
||||
ID uint `json:"id"` // 提现ID
|
||||
WithdrawNo string `json:"withdraw_no"` // 提现单号
|
||||
RemainExecNum int `json:"num"` // 剩余执行次数
|
||||
RemainRepeatNum int `json:"repeat_num"` // 剩余重复执行次数
|
||||
}
|
Reference in New Issue
Block a user