mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +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
|
|
}
|