Ai
15 Star 47 Fork 8

zhangchenghui/wxpay

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
notifies.go 424 Bytes
Copy Edit Raw Blame History
zhangchenghui authored 2018-09-13 14:55 +08:00 . 规范常量命名
package wxpay
type Notifies struct{}
// 通知成功
func (n *Notifies) OK() string {
var params = make(Params)
params.SetString("return_code", Success)
params.SetString("return_msg", "ok")
return MapToXml(params)
}
// 通知不成功
func (n *Notifies) NotOK(errMsg string) string {
var params = make(Params)
params.SetString("return_code", Fail)
params.SetString("return_msg", errMsg)
return MapToXml(params)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/objcoding/wxpay.git
git@gitee.com:objcoding/wxpay.git
objcoding
wxpay
wxpay
master

Search