mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-01-06 06:35:47 +08:00
15 lines
265 B
Go
15 lines
265 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"`
|
|
|
|
Codes []string
|
|
}
|