You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
624 B
Go
19 lines
624 B
Go
package request
|
|
|
|
type PaymentNotifyRequest struct {
|
|
OrderID string `form:"orderid"`
|
|
TradeNo string `form:"trade_no"`
|
|
DisName string `form:"dis_name"`
|
|
PayStatus int `form:"paystatus"`
|
|
PayMoney float64 `form:"paymoney"`
|
|
PriPayMoney float64 `form:"pri_paymoney"`
|
|
OrderTime int64 `form:"order_time"`
|
|
PayTime int64 `form:"paytime"`
|
|
MchOrderID string `form:"mch_orderid"`
|
|
NotifyUrl string `form:"notify_url"`
|
|
BuyerAccount string `form:"buyer_account"`
|
|
Attach string `form:"attach"`
|
|
Sign string `form:"sign"`
|
|
SignType string `form:"sign_type"`
|
|
}
|