2023-08-15 22:48:11 +08:00
|
|
|
package model
|
|
|
|
|
|
|
|
type Firewall struct {
|
|
|
|
BaseModel
|
|
|
|
|
2023-08-30 14:56:11 +08:00
|
|
|
Type string `gorm:"type:varchar(64);not null" json:"type"`
|
2023-08-15 22:48:11 +08:00
|
|
|
Port string `gorm:"type:varchar(64);not null" json:"port"`
|
|
|
|
Protocol string `gorm:"type:varchar(64);not null" json:"protocol"`
|
|
|
|
Address string `gorm:"type:varchar(64);not null" json:"address"`
|
|
|
|
Strategy string `gorm:"type:varchar(64);not null" json:"strategy"`
|
|
|
|
Description string `gorm:"type:varchar(64);not null" json:"description"`
|
|
|
|
}
|
2024-06-15 22:28:03 +08:00
|
|
|
|
|
|
|
type Forward struct {
|
|
|
|
BaseModel
|
|
|
|
|
|
|
|
Protocol string `gorm:"type:varchar(64);not null" json:"protocol"`
|
|
|
|
Port string `gorm:"type:varchar(64);not null" json:"port"`
|
|
|
|
TargetIP string `gorm:"type:varchar(64);not null" json:"targetIP"`
|
|
|
|
TargetPort string `gorm:"type:varchar(64);not null" json:"targetPort"`
|
|
|
|
}
|