1Panel/backend/app/model/firewall.go
endymx af0ecce25b
Some checks failed
Build / SonarCloud (push) Failing after -5m28s
sync2gitee / repo-sync (push) Failing after -5m29s
Build Test / build-linux-binary (push) Failing after 7s
feat: 端口转发功能 (#5439)
2024-06-15 22:28:03 +08:00

21 lines
787 B
Go

package model
type Firewall struct {
BaseModel
Type string `gorm:"type:varchar(64);not null" json:"type"`
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"`
}
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"`
}