Files
mayfly-go/server/internal/redis/domain/entity/query.go

14 lines
385 B
Go
Raw Normal View History

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
Codes []string
TagPath string `form:"tagPath"`
2022-10-26 20:49:29 +08:00
}