mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-12-24 08:36:35 +08:00
15 lines
266 B
Go
15 lines
266 B
Go
package entity
|
|
|
|
import "mayfly-go/pkg/model"
|
|
|
|
type MongoQuery struct {
|
|
model.Model
|
|
|
|
Name string
|
|
Uri string
|
|
SshTunnelMachineId uint64 // ssh隧道机器id
|
|
TagPath string `json:"tagPath" form:"tagPath"`
|
|
|
|
TagIds []uint64
|
|
}
|