feat: 删除不需要文件夹
This commit is contained in:
13
features/firewall/model/firewall.go
Normal file
13
features/firewall/model/firewall.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package model
|
||||
|
||||
type Firewall struct {
|
||||
ID int64 `json:"id" xorm:"id"`
|
||||
CreatedAt int64 `json:"createdAt" xorm:"created_at"`
|
||||
UpdatedAt int64 `json:"updatedAt" xorm:"updated_at"`
|
||||
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"`
|
||||
}
|
||||
Reference in New Issue
Block a user