mirror of
				https://gitee.com/dromara/mayfly-go
				synced 2025-11-04 00:10:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			318 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			318 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package entity
 | 
						|
 | 
						|
import "mayfly-go/pkg/model"
 | 
						|
 | 
						|
type MongoQuery struct {
 | 
						|
	model.Model
 | 
						|
 | 
						|
	Code               string `json:"code" form:"code"`
 | 
						|
	Name               string
 | 
						|
	Uri                string
 | 
						|
	SshTunnelMachineId uint64 // ssh隧道机器id
 | 
						|
	TagPath            string `json:"tagPath" form:"tagPath"`
 | 
						|
 | 
						|
	Codes []string
 | 
						|
}
 |