Ai
1 Star 0 Fork 100

java8dj/微信

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
change.go 2.43 KB
一键复制 编辑 原始数据 按行查看 历史
java8dj 提交于 2022-06-20 09:28 +08:00 . a
/*
Copyright 2020 java8dj
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package wxpay
import (
"encoding/xml"
)
// 企业付款到零钱(前提用户必须关注公众号)
func (c *Client) Change(body ChangeBody) (wxRsp ChangeResponse, err error) {
// 业务逻辑
bytes, err := c.doWeChatWithCert("mmpaymkttransfers/promotion/transfers", body, c.buildBodyInMchMode)
if err != nil {
return
}
// 不返回sign不需要校验
// 解析返回值
err = xml.Unmarshal(bytes, &wxRsp)
return
}
// 微信找零的参数
type ChangeBody struct {
DeviceInfo string `json:"device_info,omitempty"` // 终端设备号
PartnerTradeNo string `json:"partner_trade_no"` // 商户系统内部订单号,要求32个字符内,只能是数字、大小写字母_-|*且在同一个商户号下唯一。详见商户订单号
OpenId string `json:"openid"` // 商品或支付单简要描述,格式要求:门店品牌名-城市分店名-实际商品名称
CheckName string `json:"check_name"` // 校验用户姓名选项(见constant定义)
ReUserName string `json:"re_user_name,omitempty"` // 收款用户姓名
Amount int `json:"amount"` // 企业找零金额,单位为分
Desc string `json:"desc"` // 企业付款备注
SpbillCreateIP string `json:"spbill_create_ip"` // IP可传用户端或者服务端的IP
}
// 微信找零的返回值
type ChangeResponse struct {
ResponseModel
MchServiceResponseModel
DeviceInfo string `xml:"device_info"` // 终端设备号
PartnerTradeNo string `xml:"partner_trade_no"` // 商户系统内部订单号,要求32个字符内,只能是数字、大小写字母_-|*且在同一个商户号下唯一。详见商户订单号
PaymentNo string `xml:"payment_no"` // 企业付款成功,返回的微信付款单号
PaymentTime string `xml:"payment_time"` // 企业付款成功时间
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/java8dj/wechat.git
git@gitee.com:java8dj/wechat.git
java8dj
wechat
微信
v0.0.3

搜索帮助