You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
361 B
7 lines
361 B
package config
|
|
|
|
type Payment struct {
|
|
NotifyUrl string `mapstructure:"notify-url" json:"notify-url" yaml:"notify-url"` //支付结果回调通知地址
|
|
ReturnUrl string `mapstructure:"return-url" json:"return-url" yaml:"return-url"` //支付完成跳转
|
|
CancelUrl string `mapstructure:"cancel-url" json:"cancel-url" yaml:"cancel-url"` //取消支付跳转
|
|
}
|
|
|