Files
mayfly-go/server/internal/mongo/domain/entity/query.go

16 lines
318 B
Go
Raw Normal View History

2022-10-26 20:49:29 +08:00
package entity
import "mayfly-go/pkg/model"
type MongoQuery struct {
model.Model
2024-04-06 18:19:17 +08:00
Code string `json:"code" form:"code"`
2022-10-26 20:49:29 +08:00
Name string
Uri string
SshTunnelMachineId uint64 // ssh隧道机器id
TagPath string `json:"tagPath" form:"tagPath"`
2022-10-26 20:49:29 +08:00
Codes []string
2022-10-26 20:49:29 +08:00
}