21 lines
674 B
Go
21 lines
674 B
Go
|
package request
|
||
|
|
||
|
type PrepayReq struct {
|
||
|
ProductName string `json:"product_name" binding:"required"`
|
||
|
Platform string `json:"platform" binding:"required"`
|
||
|
}
|
||
|
type RefundReq struct {
|
||
|
ProductName string `json:"product_name" binding:"required"`
|
||
|
Platform string `json:"platform" binding:"required"`
|
||
|
}
|
||
|
|
||
|
type H5PrepayReq struct {
|
||
|
QueryData string `json:"query_data" binding:"required"`
|
||
|
Href string `json:"href" binding:"required"`
|
||
|
ProductName string `json:"product_name" binding:"required"`
|
||
|
Platform string `json:"platform" binding:"required"`
|
||
|
}
|
||
|
type QueryDataReq struct {
|
||
|
OutTradeNo string `json:"out_trade_no" form:"out_trade_no" binding:"required"`
|
||
|
}
|