github.com/chanxuehong/wechat@v0.0.0-20230222024006-36f0325263cd/mch/mmpaymkttransfers/gettransferinfo.go (about) 1 package mmpaymkttransfers 2 3 import ( 4 "github.com/chanxuehong/wechat/mch/core" 5 ) 6 7 // 查询企业付款. 8 // 9 // NOTE: 请求需要双向证书 10 func GetTransferInfo(clt *core.Client, req map[string]string) (resp map[string]string, err error) { 11 return clt.PostXML(core.APIBaseURL()+"/mmpaymkttransfers/gettransferinfo", req) 12 }