-
Notifications
You must be signed in to change notification settings - Fork 174
/
client.go
91 lines (65 loc) · 2.58 KB
/
client.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package externalPay
import (
"github.com/ArtisanCloud/PowerLibs/v3/object"
"github.com/ArtisanCloud/PowerWeChat/v3/src/kernel"
response2 "github.com/ArtisanCloud/PowerWeChat/v3/src/kernel/response"
"github.com/ArtisanCloud/PowerWeChat/v3/src/work/externalPay/request"
"github.com/ArtisanCloud/PowerWeChat/v3/src/work/externalPay/response"
)
type Client struct {
BaseClient *kernel.BaseClient
}
func NewClient(app kernel.ApplicationInterface) (*Client, error) {
baseClient, err := kernel.NewBaseClient(&app, nil)
if err != nil {
return nil, err
}
return &Client{
baseClient,
}, nil
}
// 新增商户号
// https://developer.work.weixin.qq.com/document/path/93666
func (comp *Client) AddMerchant(mchID string, merchantName string) (*response2.ResponseWork, error) {
result := &response2.ResponseWork{}
options := &object.HashMap{
"mch_id": mchID,
"merchant_name": merchantName,
}
_, err := comp.BaseClient.HttpPostJson(ctx, "cgi-bin/externalpay/addmerchant", options, nil, nil, result)
return result, err
}
// 查询商户号详情
// https://developer.work.weixin.qq.com/document/path/93666
func (comp *Client) GetMerchant(mchID string) (*response.ResponseExternalPayGetMerchant, error) {
result := &response.ResponseExternalPayGetMerchant{}
options := &object.HashMap{
"mch_id": mchID,
}
_, err := comp.BaseClient.HttpPostJson(ctx, "cgi-bin/externalpay/getmerchant", options, nil, nil, result)
return result, err
}
// 删除商户号
// https://developer.work.weixin.qq.com/document/path/93666
func (comp *Client) DelMerchant(mchID string) (*response2.ResponseWork, error) {
result := &response2.ResponseWork{}
options := &object.HashMap{
"mch_id": mchID,
}
_, err := comp.BaseClient.HttpPostJson(ctx, "cgi-bin/externalpay/delmerchant", options, nil, nil, result)
return result, err
}
// 设置商户号使用范围
// https://developer.work.weixin.qq.com/document/path/93666
func (comp *Client) SetMchUseScope(options *request.RequestExternalPaySetMchUseScope) (*response2.ResponseWork, error) {
result := &response2.ResponseWork{}
_, err := comp.BaseClient.HttpPostJson(ctx, "cgi-bin/externalpay/set_mch_use_scope", options, nil, nil, result)
return result, err
}
// 获取对外收款记录
// https://developer.work.weixin.qq.com/document/path/93667
func (comp *Client) GetBillList(options *request.RequestExternalPayGetBillList) (*response.ResponseExternalPayGetBillList, error) {
result := &response.ResponseExternalPayGetBillList{}
_, err := comp.BaseClient.HttpPostJson(ctx, "cgi-bin/externalpay/get_bill_list", options, nil, nil, result)
return result, err
}