feat: 防火墙查询

This commit is contained in:
TsMask
2023-09-13 14:48:47 +08:00
parent 1da27ba522
commit b9383e2f74
10 changed files with 1075 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package model
type Firewall struct {
Type string `json:"type" xorm:"type"`
Port string `json:"port" xorm:"port"`
Protocol string `json:"protocol" xorm:"protocol"`
Address string `json:"address" xorm:"address"`
Strategy string `json:"strategy" xorm:"strategy"`
Description string `json:"description" xorm:"description"`
}