This commit is contained in:
suyl
2021-04-29 17:36:37 +08:00
parent e595d096a7
commit 7975ae96f0
5 changed files with 70 additions and 6 deletions

View File

@@ -8,9 +8,11 @@ import (
)
const (
MsgTypeUnkown = 0 // 未知
MsgTypePay = "VSP501" // 支付结果回调
MsgTypeRefund = "VSP503" // 退款结果回调
MsgTypeUnkown = 0 // 未知
MsgTypePay = "VSP501" // 支付结果回调 (微信
MsgTypeRefund = "VSP503" // 退款结果回调 (微信
MsgTypePayZFB = "VSP511" //支付宝
MsgTypeRefundZFB = "VSP513"
TrxStatusSuccess = "0000"
)