2022-10-26 20:49:29 +08:00
|
|
|
package entity
|
|
|
|
|
|
|
|
|
|
type RedisQuery struct {
|
2024-03-02 19:08:19 +08:00
|
|
|
Id uint64 `form:"id"`
|
2024-04-06 18:19:17 +08:00
|
|
|
Code string `json:"code" form:"code"`
|
2024-03-02 19:08:19 +08:00
|
|
|
Name string `orm:"column(name)" json:"name" form:"name"`
|
|
|
|
|
Host string `orm:"column(host)" json:"host" form:"host"`
|
2022-10-26 20:49:29 +08:00
|
|
|
|
2024-03-02 19:08:19 +08:00
|
|
|
SshTunnelMachineId int `orm:"column(ssh_tunnel_machine_id)" json:"sshTunnelMachineId"` // ssh隧道机器id
|
2022-10-26 20:49:29 +08:00
|
|
|
|
2023-12-05 23:03:51 +08:00
|
|
|
Codes []string
|
2023-07-08 20:05:55 +08:00
|
|
|
TagPath string `form:"tagPath"`
|
2022-10-26 20:49:29 +08:00
|
|
|
}
|