增加封禁省份管理

This commit is contained in:
刘祥超
2020-11-06 11:30:47 +08:00
parent 3b4a9ed4cf
commit 8d074f09a8

View File

@@ -1,7 +1,7 @@
package firewallconfigs
type HTTPFirewallRegionConfig struct {
IsOn bool `yaml:"isOn" json:"isOn"`
DenyCountryIds []int64 `yaml:"denyCountryIds" json:"denyCountryIds"` // 封禁的国家|地区
DenyProvinces []int64 `yaml:"denyProvinceIds" json:"denyProvinceIds"` // 封禁的省或自治区
IsOn bool `yaml:"isOn" json:"isOn"`
DenyCountryIds []int64 `yaml:"denyCountryIds" json:"denyCountryIds"` // 封禁的国家|地区
DenyProvinceIds []int64 `yaml:"denyProvinceIds" json:"denyProvinceIds"` // 封禁的省或自治区
}