mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-12-15 09:18:59 +08:00
10 lines
256 B
Go
10 lines
256 B
Go
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"`
|
|
Description string `gorm:"type:varchar(64);not null" json:"description"`
|
|
}
|