mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-12-14 00:31:51 +08:00
15 lines
423 B
Go
15 lines
423 B
Go
package model
|
|
|
|
type Clam struct {
|
|
BaseModel
|
|
|
|
Name string `gorm:"not null" json:"name"`
|
|
Status string `json:"status"`
|
|
Path string `gorm:"not null" json:"path"`
|
|
InfectedStrategy string `json:"infectedStrategy"`
|
|
InfectedDir string `json:"infectedDir"`
|
|
Spec string `json:"spec"`
|
|
EntryID int `json:"entryID"`
|
|
Description string `json:"description"`
|
|
}
|