修改vivo支付接口

This commit is contained in:
ayflying
2025-07-24 18:33:54 +08:00
parent 90b72129a5
commit 7c19a66cb5
6 changed files with 36 additions and 12 deletions

View File

@@ -9,3 +9,26 @@ type TokenAuthResponseData struct {
Success bool `json:"success,omitempty"`
OpenId string `json:"openid,omitempty"`
}
type LoginType struct {
Token string `json:"token"`
Ssoid string `json:"ssoid"`
Channel int `json:"channel"`
AdId string `json:"adId"`
}
type PayCallback struct {
AppId string `json:"appId"`
CpId string `json:"cpId"`
CpOrderNumber string `json:"cpOrderNumber"`
ExtInfo string `json:"extInfo"`
OrderAmount string `json:"orderAmount"`
OrderNumber string `json:"orderNumber"`
PayTime string `json:"payTime"`
RespCode string `json:"respCode"`
RespMsg string `json:"respMsg"`
SignMethod string `json:"signMethod"`
Signature string `json:"signature"`
TradeStatus string `json:"tradeStatus"`
TradeType string `json:"tradeType"`
}