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