main
parent
7eee3952d0
commit
744b92c086
@ -0,0 +1,7 @@
|
|||||||
|
package request
|
||||||
|
|
||||||
|
type BindingPaySmsRequest struct {
|
||||||
|
PaymentNo string `json:"paymentNo" form:"paymentNo"`
|
||||||
|
ThpInfo string `json:"thpInfo" form:"thpInfo"`
|
||||||
|
AgreeID string `json:"agreeId" form:"agreeId"`
|
||||||
|
}
|
@ -0,0 +1,16 @@
|
|||||||
|
package notify
|
||||||
|
|
||||||
|
type GatewayPayRet struct {
|
||||||
|
CusID string `json:"cusid" form:"cusid"`
|
||||||
|
AppID string `json:"appid" form:"appid"`
|
||||||
|
TrxCode string `json:"trxcode" form:"trxcode"`
|
||||||
|
TrxID string `json:"trxid" form:"trxid"`
|
||||||
|
TrxAmt string `json:"trxamt" form:"trxamt"`
|
||||||
|
TrxDate string `json:"trxdate" form:"trxdate"`
|
||||||
|
PayTime string `json:"paytime" form:"paytime"`
|
||||||
|
TrxStatus string `json:"trxstatus" form:"trxstatus"`
|
||||||
|
TrxReserved string `json:"trxreserved" form:"trxreserved"`
|
||||||
|
CusOrderID string `json:"cusorderid" form:"cusorderid"`
|
||||||
|
SignType string `json:"signtype" form:"signtype"`
|
||||||
|
Sign string `json:"sign" form:"sign"`
|
||||||
|
}
|
@ -0,0 +1,36 @@
|
|||||||
|
package notify
|
||||||
|
|
||||||
|
type PayAgreeNotify struct {
|
||||||
|
CusID string `json:"cusid" form:"cusid"`
|
||||||
|
AppID string `json:"appid" form:"appid"`
|
||||||
|
OutTrxID string `json:"outTrxid" form:"outtrxid"`
|
||||||
|
TrxCode string `json:"trxcode" form:"trxcode"`
|
||||||
|
TrxID string `json:"trxid" form:"trxid"`
|
||||||
|
InitAmt string `json:"initamt" form:"initamt"`
|
||||||
|
TrxAmt string `json:"trxamt" form:"trxamt"`
|
||||||
|
TrxDate string `json:"trxdate" form:"trxdate"`
|
||||||
|
PayTime string `json:"paytime" form:"paytime"`
|
||||||
|
ChannelTrxID string `json:"chnltrxid" form:"chnltrxid"`
|
||||||
|
TrxStatus string `json:"trxstatus" form:"trxstatus"`
|
||||||
|
|
||||||
|
TermNo string `json:"termno" form:"termno"`
|
||||||
|
TermBatchID string `json:"termbatchid" form:"termbatchid"`
|
||||||
|
TermTraceNo string `json:"termtraceno" form:"termtraceno"`
|
||||||
|
TermAuthNo string `json:"termauthno" form:"termauthno"`
|
||||||
|
TermRefNum string `json:"termrefnum" form:"termrefnum"`
|
||||||
|
|
||||||
|
TrxReserved string `json:"trxreserved" form:"trxreserved"`
|
||||||
|
SrcTrxID string `json:"srctrxid" form:"srctrxid"`
|
||||||
|
CusOrderID string `json:"cusorderid" form:"cusorderid"`
|
||||||
|
Acct string `json:"acct" form:"acct"`
|
||||||
|
Fee string `json:"fee" form:"fee"`
|
||||||
|
CmID string `json:"cmid" form:"cmid"`
|
||||||
|
ChannelID string `json:"chnlid" form:"chnlid"`
|
||||||
|
ChannelData string `json:"chnldata" form:"chnldata"`
|
||||||
|
AcctType string `json:"accttype" form:"accttype"`
|
||||||
|
BankCode string `json:"bankcode" form:"bankcode"`
|
||||||
|
LogOnID string `json:"logonid" form:"logonid"`
|
||||||
|
|
||||||
|
SignType string `json:"signtype" form:"signtype"`
|
||||||
|
Sign string `json:"sign" form:"sign"`
|
||||||
|
}
|
@ -0,0 +1,14 @@
|
|||||||
|
package param
|
||||||
|
|
||||||
|
type UnbindParam struct {
|
||||||
|
CusID string `json:"cusid" form:"cusid"`
|
||||||
|
AppID string `json:"appid" form:"appid"`
|
||||||
|
ReqTime string `json:"reqtime" form:"reqtime"`
|
||||||
|
ReqIp string `json:"reqip" form:"reqip"`
|
||||||
|
Version string `json:"version" form:"version"`
|
||||||
|
RandomStr string `json:"randomstr" form:"randomstr"`
|
||||||
|
SignType string `json:"signtype" form:"signtype"`
|
||||||
|
Sign string `json:"sign" form:"sign"`
|
||||||
|
|
||||||
|
AgreeID string `json:"agreeid" form:"agreeid"`
|
||||||
|
}
|
Loading…
Reference in New Issue