You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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"`
|
|
}
|