1Panel/agent/app/model/clam.go

15 lines
423 B
Go
Raw Normal View History

2024-07-23 14:48:37 +08:00
package model
type Clam struct {
BaseModel
2024-08-14 10:43:32 +08:00
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"`
2024-07-23 14:48:37 +08:00
}