2021-07-28 18:03:19 +08:00
|
|
|
package form
|
|
|
|
|
|
|
|
|
|
type Redis struct {
|
2022-07-20 23:25:52 +08:00
|
|
|
Id uint64
|
2022-10-26 20:49:29 +08:00
|
|
|
Name string `json:"name"`
|
2022-07-20 23:25:52 +08:00
|
|
|
Host string `binding:"required" json:"host"`
|
|
|
|
|
Password string `json:"password"`
|
|
|
|
|
Mode string `json:"mode"`
|
2022-09-29 13:14:50 +08:00
|
|
|
Db string `json:"db"`
|
2023-03-06 16:59:57 +08:00
|
|
|
SshTunnelMachineId int `json:"sshTunnelMachineId"` // ssh隧道机器id
|
2022-10-26 20:49:29 +08:00
|
|
|
TagId uint64 `binding:"required" json:"tagId"`
|
|
|
|
|
TagPath string `json:"tagPath"`
|
2022-07-20 23:25:52 +08:00
|
|
|
Remark string `json:"remark"`
|
2021-07-28 18:03:19 +08:00
|
|
|
}
|
|
|
|
|
|
2023-04-16 00:50:36 +08:00
|
|
|
type Rename struct {
|
|
|
|
|
Key string `binding:"required" json:"key"`
|
|
|
|
|
NewKey string `binding:"required" json:"newKey"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type Expire struct {
|
|
|
|
|
Key string `binding:"required" json:"key"`
|
|
|
|
|
Seconds int64 `binding:"required" json:"seconds"`
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-12 16:00:31 +08:00
|
|
|
type KeyInfo struct {
|
|
|
|
|
Key string `binding:"required" json:"key"`
|
|
|
|
|
Timed int64
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type StringValue struct {
|
|
|
|
|
KeyInfo
|
2023-06-01 12:31:32 +08:00
|
|
|
Value any `binding:"required" json:"value"`
|
2022-01-12 16:00:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type HashValue struct {
|
|
|
|
|
KeyInfo
|
2023-06-01 12:31:32 +08:00
|
|
|
Value []map[string]any `binding:"required" json:"value"`
|
2022-01-12 16:00:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type SetValue struct {
|
|
|
|
|
KeyInfo
|
2023-06-01 12:31:32 +08:00
|
|
|
Value []any `binding:"required" json:"value"`
|
2021-07-28 18:03:19 +08:00
|
|
|
}
|
2022-07-10 12:14:06 +08:00
|
|
|
|
2022-09-22 11:56:21 +08:00
|
|
|
type ListValue struct {
|
|
|
|
|
KeyInfo
|
2023-06-01 12:31:32 +08:00
|
|
|
Value []any `binding:"required" json:"value"`
|
2022-09-22 11:56:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// list lset命令参数入参
|
|
|
|
|
type ListSetValue struct {
|
|
|
|
|
Key string `binding:"required" json:"key"`
|
|
|
|
|
Index int64
|
2023-06-01 12:31:32 +08:00
|
|
|
Value any `binding:"required" json:"value"`
|
2022-09-22 11:56:21 +08:00
|
|
|
}
|
|
|
|
|
|
2022-07-10 12:14:06 +08:00
|
|
|
type RedisScanForm struct {
|
|
|
|
|
Cursor map[string]uint64 `json:"cursor"`
|
|
|
|
|
Match string `json:"match"`
|
|
|
|
|
Count int64 `json:"count"`
|
|
|
|
|
}
|
2023-04-16 00:50:36 +08:00
|
|
|
|
|
|
|
|
type ScanForm struct {
|
|
|
|
|
Key string `json:"key"`
|
|
|
|
|
Cursor uint64 `json:"cursor"`
|
|
|
|
|
Match string `json:"match"`
|
|
|
|
|
Count int64 `json:"count"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type SmemberOption struct {
|
|
|
|
|
Key string `json:"key"`
|
|
|
|
|
Member any `json:"member"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type LRemOption struct {
|
|
|
|
|
Key string `json:"key"`
|
|
|
|
|
Count int64 `json:"count"`
|
|
|
|
|
Member any `json:"member"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type ZAddOption struct {
|
|
|
|
|
Key string `json:"key"`
|
|
|
|
|
Score float64 `json:"score"`
|
|
|
|
|
Member any `json:"member"`
|
|
|
|
|
}
|