You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-library/service/kashangwl/buy.go

47 lines
1.6 KiB

package kashangwl
3 years ago
import "encoding/json"
type BuyResponse struct {
Code string `json:"code"`
Message string `json:"message"`
Data struct {
OrderID int64 `json:"order_id"` // 订单号
ProductPrice string `json:"product_price"` // 商品价格
TotalPrice string `json:"total_price"` // 总支付价格
RechargeUrl string `json:"recharge_url"` // 卡密充值网址
State int `json:"state"` // 订单状态100等待发货101正在充值200交易成功500交易失败501未知状态
Cards []struct {
CardNo string `json:"card_no"`
CardPassword string `json:"card_password"`
} `json:"cards,omitempty"` // 卡密(仅当订单成功并且商品类型为卡密时返回此数据)
Tickets []struct {
No string `json:"no"`
Ticket string `json:"ticket"`
} `json:"tickets,omitempty"` // 卡券(仅当订单成功并且商品类型为卡券时返回此数据)
} `json:"data"`
}
3 years ago
type BuyResult struct {
Result BuyResponse // 结果
Body []byte // 内容
Err error // 错误
}
func NewBuyResult(result BuyResponse, body []byte, err error) *BuyResult {
return &BuyResult{Result: result, Body: body, Err: err}
}
// Buy 购买商品
// http://doc.cqmeihu.cn/sales/BuyProduct.html
func (app *App) Buy(notMustParams ...Params) *BuyResult {
// 参数
params := app.NewParamsWith(notMustParams...)
// 请求
3 years ago
body, err := app.request("http://www.kashangwl.com/api/buy", params)
// 定义
var response BuyResponse
err = json.Unmarshal(body, &response)
return NewBuyResult(response, body, err)
}