代码拉取完成,页面将自动刷新
同步操作将从 北京小程科技有限公司/微信 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/*
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"` // 企业付款成功时间
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。