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.
17 lines
585 B
Go
17 lines
585 B
Go
7 months ago
|
package payment
|
||
|
|
||
|
type TransferPayResult struct {
|
||
|
Service string `json:"service"`
|
||
|
OrderID string `json:"orderid"`
|
||
|
OutOrderID string `json:"out_orderid"`
|
||
|
OrderMoney string `json:"order_money"`
|
||
|
PayeeAccountName string `json:"payee_account_name"`
|
||
|
PayeeCardNo string `json:"payee_card_no"`
|
||
|
PayeeBankName string `json:"payee_bank_name"`
|
||
|
Version string `json:"version"`
|
||
|
Message string `json:"message"`
|
||
|
Status string `json:"status"`
|
||
|
SignType string `json:"sign_ype"`
|
||
|
Sign string `json:"sign"`
|
||
|
}
|