mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-15 20:20:11 +08:00
14 lines
418 B
Go
14 lines
418 B
Go
package model
|
|
|
|
type Command struct {
|
|
BaseModel
|
|
Name string `gorm:"type:varchar(64);unique;not null" json:"name"`
|
|
GroupID uint `gorm:"type:decimal" json:"groupID"`
|
|
Command string `gorm:"type:varchar(256);not null" json:"command"`
|
|
}
|
|
|
|
type RedisCommand struct {
|
|
BaseModel
|
|
Name string `gorm:"type:varchar(64);unique;not null" json:"name"`
|
|
Command string `gorm:"type:varchar(256);not null" json:"command"`
|
|
}
|