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