mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-12-21 13:17:48 +08:00
10 lines
240 B
Go
10 lines
240 B
Go
|
package model
|
||
|
|
||
|
type Command struct {
|
||
|
BaseModel
|
||
|
Type string `gorm:"not null" json:"type"`
|
||
|
Name string `gorm:"not null" json:"name"`
|
||
|
GroupID uint `gorm:"not null" json:"groupID"`
|
||
|
Command string `gorm:"not null" json:"command"`
|
||
|
}
|