mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-02-16 09:15:39 +08:00
17 lines
377 B
Go
17 lines
377 B
Go
package entity
|
|
|
|
import "mayfly-go/pkg/model"
|
|
|
|
type MongoQuery struct {
|
|
model.Model
|
|
|
|
Code string `json:"code" form:"code"`
|
|
Name string
|
|
Keyword string `json:"keyword" form:"keyword"`
|
|
Uri string
|
|
SshTunnelMachineId uint64 // ssh隧道机器id
|
|
TagPath string `json:"tagPath" form:"tagPath"`
|
|
|
|
Codes []string
|
|
}
|