Files
mayfly-go/server/internal/redis/domain/entity/query.go
2024-03-02 19:08:19 +08:00

13 lines
346 B
Go

package entity
type RedisQuery struct {
Id uint64 `form:"id"`
Name string `orm:"column(name)" json:"name" form:"name"`
Host string `orm:"column(host)" json:"host" form:"host"`
SshTunnelMachineId int `orm:"column(ssh_tunnel_machine_id)" json:"sshTunnelMachineId"` // ssh隧道机器id
Codes []string
TagPath string `form:"tagPath"`
}