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