opt: verify the order in notify callback

This commit is contained in:
RockYang
2024-01-22 13:58:25 +08:00
parent 16f946550e
commit 24218e7570
9 changed files with 168 additions and 58 deletions

View File

@@ -38,16 +38,6 @@ type SmtpConfig struct {
Password string // 发件人邮箱密码
}
// JPayConfig PayJs 支付配置
type JPayConfig struct {
Enabled bool
Name string // 支付名称,默认 wechat
AppId string // 商户 ID
PrivateKey string // 私钥
ApiURL string // API 网关
NotifyURL string // 异步回调地址
}
type ChatPlusApiConfig struct {
ApiURL string
AppId string
@@ -105,10 +95,20 @@ type HuPiPayConfig struct { //虎皮椒第四方支付配置
Name string // 支付名称wechat/alipay
AppId string // App ID
AppSecret string // app 密钥
PayURL string // 支付网关
ApiURL string // 支付网关
NotifyURL string // 异步通知回调
}
// JPayConfig PayJs 支付配置
type JPayConfig struct {
Enabled bool
Name string // 支付名称,默认 wechat
AppId string // 商户 ID
PrivateKey string // 私钥
ApiURL string // API 网关
NotifyURL string // 异步回调地址
}
type XXLConfig struct { // XXL 任务调度配置
Enabled bool
ServerAddr string