PaymentCenter/app/http/entities/front/wx.go

14 lines
675 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package front
type GenerateSchemeRequest struct {
JumpWxa JumpWxa `json:"jump_wxa"`
IsExpire bool `json:"is_expire"` //
ExpireType int `json:"expire_type"` // 默认值0到期失效的 scheme 码失效类型失效时间0失效间隔天数1
ExpireInterval int `json:"expire_interval"` //到期失效的 scheme 码的失效间隔天数。生成的到期失效 scheme 码在该间隔时间到达前有效。最长间隔天数为30天。is_expire 为 true 且 expire_type 为 1 时必填
}
type JumpWxa struct {
Path string `json:"path"`
Query string `json:"query"`
EnvVersion string `json:"env_version"`
}