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

9 lines
240 B
Go
Raw Normal View History

package model
type Command struct {
2022-09-01 08:48:43 +00:00
BaseModel
2022-08-31 15:16:10 +00:00
Name string `gorm:"type:varchar(64);unique;not null" json:"name"`
GroupID uint `gorm:"type:decimal" json:"groupID"`
2022-08-31 15:16:10 +00:00
Command string `gorm:"type:varchar(256);not null" json:"command"`
}