mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-16 04:24:57 +08:00
15 lines
418 B
Go
15 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"`
|
||
|
}
|