gateway.go 356 字节
Newer Older
Y
Your Name 已提交
1 2 3 4 5 6 7 8 9 10
package entity

//GatewayBasicConfig 网关基础配置
type GatewayBasicConfig struct {
	SuccessCode         string `json:"successCode"`
	NodeUpdatePeriod    int    `json:"nodeUpdatePeriod"`
	MonitorUpdatePeriod int    `json:"monitorUpdatePeriod"`
	MonitorTimeout      int    `json:"monitorTimeout"`
	SkipCertificate     int    `json:"skipCertificate"`
}