Compare commits

..

2 Commits

Author SHA1 Message Date
1412fc67be Merge pull request '添加支付结构体' (#1) from feature/添加支付结构体 into master
Reviewed-on: #1
2025-03-11 16:41:22 +08:00
吕翠丽
c25a65488e 添加支付结构体 2025-03-11 16:39:01 +08:00

8
rabbitmq_pay.go Normal file
View File

@ -0,0 +1,8 @@
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"` // 剩余重复执行次数
}