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