2022-08-30 18:49:07 +08:00
|
|
|
package model
|
|
|
|
|
|
|
|
type Command struct {
|
2022-09-01 16:48:43 +08:00
|
|
|
BaseModel
|
2022-08-31 23:16:10 +08:00
|
|
|
Name string `gorm:"type:varchar(64);unique;not null" json:"name"`
|
2023-10-31 14:14:30 +08:00
|
|
|
GroupID uint `gorm:"type:decimal" json:"groupID"`
|
2022-08-31 23:16:10 +08:00
|
|
|
Command string `gorm:"type:varchar(256);not null" json:"command"`
|
2022-08-30 18:49:07 +08:00
|
|
|
}
|
2024-05-15 23:02:35 +08:00
|
|
|
|
|
|
|
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"`
|
|
|
|
}
|