mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 16:00:25 +08:00
20 lines
357 B
Go
20 lines
357 B
Go
package dto
|
|
|
|
import (
|
|
"mayfly-go/internal/redis/domain/entity"
|
|
tagentity "mayfly-go/internal/tag/domain/entity"
|
|
)
|
|
|
|
type SaveRedis struct {
|
|
Redis *entity.Redis
|
|
AuthCert *tagentity.ResourceAuthCert
|
|
TagCodePaths []string
|
|
}
|
|
|
|
type RunCmd struct {
|
|
Id uint64 `json:"id"`
|
|
Db int `json:"db"`
|
|
Cmd []any `json:"cmd"`
|
|
Remark string
|
|
}
|