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

12 lines
407 B
Go
Raw Normal View History

2024-06-24 05:52:42 +00:00
package model
type Clam struct {
BaseModel
Name string `gorm:"type:varchar(64);not null" json:"name"`
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"`
Description string `gorm:"type:varchar(64)" json:"description"`
2024-06-24 05:52:42 +00:00
}