Files
mayfly-go/server/internal/mongo/domain/entity/query.go
2025-05-20 21:04:47 +08:00

18 lines
394 B
Go

package entity
import "mayfly-go/pkg/model"
type MongoQuery struct {
model.Model
model.PageParam
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
}