1 Star 0 Fork 1

可乐烛光烟 / go-utils

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
h5.go 2.01 KB
一键复制 编辑 原始数据 按行查看 历史
可乐烛光烟 提交于 2022-11-09 00:21 . Initial commit
/*
* @Author: i@rysa.cn
* @Date: 2022-05-14 17:02:20
* @LastEditTime: 2022-07-26 09:43:56
* @LastEditors: i@rysa.cn
* @Description:
* @FilePath: \go-utils\wechat\pay\h5.go
*/
package pay
import (
"github.com/wechatpay-apiv3/wechatpay-go/core"
"github.com/wechatpay-apiv3/wechatpay-go/services/payments"
pay_h5 "github.com/wechatpay-apiv3/wechatpay-go/services/payments/h5"
)
type h5 struct {
*PayConfig
}
func NewH5(cfg *PayConfig) *h5 {
return &h5{cfg}
}
func (p *h5) PrepayOrder(prepay OrderRequest) (*pay_h5.PrepayResponse, *core.APIResult, error) {
client, ctx, err := GetClient(p.PayConfig)
if err != nil {
return nil, nil, err
}
svc := pay_h5.H5ApiService{Client: client}
resp, result, err := svc.Prepay(ctx, pay_h5.PrepayRequest{
Appid: core.String(p.Appid),
Mchid: core.String(p.MchId),
Description: core.String(prepay.Description),
OutTradeNo: core.String(prepay.OutTradeNo),
Attach: core.String(prepay.Attach),
NotifyUrl: core.String(p.Notify),
Amount: &pay_h5.Amount{
Total: core.Int64(int64(prepay.Amount * 100)),
},
SceneInfo: &pay_h5.SceneInfo{
PayerClientIp: core.String(prepay.ClientIp),
H5Info: &pay_h5.H5Info{
Type: core.String(prepay.H5Info),
},
},
})
return resp, result, err
}
func (p *h5) QueryOrderByTransactionId(transactionId string) (*payments.Transaction, *core.APIResult, error) {
client, ctx, err := GetClient(p.PayConfig)
if err != nil {
return nil, nil, err
}
svc := pay_h5.H5ApiService{Client: client}
return svc.QueryOrderById(ctx, pay_h5.QueryOrderByIdRequest{
Mchid: core.String(p.MchId),
TransactionId: core.String(transactionId),
})
}
func (p *h5) QueryOrderByOutTradeNo(outNo string) (*payments.Transaction, *core.APIResult, error) {
client, ctx, err := GetClient(p.PayConfig)
if err != nil {
return nil, nil, err
}
svc := pay_h5.H5ApiService{Client: client}
return svc.QueryOrderByOutTradeNo(ctx, pay_h5.QueryOrderByOutTradeNoRequest{
Mchid: core.String(p.MchId),
OutTradeNo: core.String(outNo),
})
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/rysa/go-utils.git
git@gitee.com:rysa/go-utils.git
rysa
go-utils
go-utils
v1.1.0

搜索帮助

344bd9b3 5694891 D2dac590 5694891