2024-06-24 13:52:42 +08:00
|
|
|
package model
|
|
|
|
|
|
|
|
type Clam struct {
|
|
|
|
BaseModel
|
|
|
|
|
2024-07-02 17:25:25 +08:00
|
|
|
Name string `gorm:"type:varchar(64);not null" json:"name"`
|
2024-07-17 16:55:28 +08:00
|
|
|
Status string `gorm:"type:varchar(64)" json:"status"`
|
2024-07-02 17:25:25 +08:00
|
|
|
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"`
|
2024-07-17 16:55:28 +08:00
|
|
|
Spec string `gorm:"type:varchar(64)" json:"spec"`
|
|
|
|
EntryID int `gorm:"type:varchar(64)" json:"entryID"`
|
2024-07-02 17:25:25 +08:00
|
|
|
Description string `gorm:"type:varchar(64)" json:"description"`
|
2024-06-24 13:52:42 +08:00
|
|
|
}
|