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/wnfuwu/check.go

65 lines
2.6 KiB

package wnfuwu
import (
"context"
"github.com/dtapps/go-library/utils/gojson"
"github.com/dtapps/go-library/utils/gorequest"
)
type CheckResponse struct {
Errno int64 `json:"errno"` // 错误码0代表成功非0代表失败
Errmsg string `json:"errmsg"` // 错误描述
1 year ago
}
type CheckResponseContent struct {
Errno int64 `json:"errno"` // 错误码0代表成功非0代表失败
Errmsg string `json:"errmsg"` // 错误描述
1 year ago
Data []struct {
Id int64 `json:"id,omitempty"` // 编号
OrderNumber string `json:"order_number"` // 系统定单号
Status int64 `json:"status"` // 充值状态:-1取消0充值中 1充值成功2充值失败3部分成功
OutTradeNum string `json:"out_trade_num"` // 商户订单号
CreateTime int64 `json:"create_time"` // 下单时间
Mobile string `json:"mobile"` // 手机号
ProductId int64 `json:"product_id"` // 产品ID
ChargeAmount string `json:"charge_amount"` // 充值成功面额
ChargeKami string `json:"charge_kami"` // 卡密流水
Isp string `json:"isp,omitempty"` // 运营商
ProductName string `json:"product_name,omitempty"` // 产品名称
FinishTime int64 `json:"finish_time,omitempty"` // 完成时间
Remark string `json:"remark,omitempty"` // 备注
State int64 `json:"state"` // 充值状态:-1取消0充值中 1充值成功2充值失败3部分成功
Voucher string `json:"voucher,omitempty"` // 凭证
} `json:"data,omitempty"`
}
type CheckResult struct {
Result CheckResponse // 结果
Body []byte // 内容
Http gorequest.Response // 请求
}
func newCheckResult(result CheckResponse, body []byte, http gorequest.Response) *CheckResult {
return &CheckResult{Result: result, Body: body, Http: http}
}
// Check 自发查询订单状态
// https://www.showdoc.com.cn/dyr/9227006175502841
func (c *Client) Check(ctx context.Context, outTradeNums string, notMustParams ...gorequest.Params) (*CheckResult, error) {
// 参数
params := gorequest.NewParamsWith(notMustParams...)
params.Set("userid", c.GetUserId())
if outTradeNums != "" {
params.Set("out_trade_nums", outTradeNums)
}
// 请求
request, err := c.request(ctx, apiUrl+"/index/check", params)
if err != nil {
return newCheckResult(CheckResponse{}, request.ResponseBody, request), err
}
// 定义
var response CheckResponse
err = gojson.Unmarshal(request.ResponseBody, &response)
return newCheckResult(response, request.ResponseBody, request), err
}