mirror of
				https://gitee.com/dromara/mayfly-go
				synced 2025-11-04 00:10:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			385 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			385 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package entity
 | 
						|
 | 
						|
type RedisQuery struct {
 | 
						|
	Id   uint64 `form:"id"`
 | 
						|
	Code string `json:"code" form:"code"`
 | 
						|
	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"`
 | 
						|
}
 |