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

15 lines
389 B
Go
Raw Normal View History

2022-10-26 20:49:29 +08:00
package entity
type MachineQuery struct {
Name string `json:"name" form:"name"`
Ip string `json:"ip" form:"ip"` // IP地址
TagPath string `json:"tagPath" form:"tagPath"`
TagIds []uint64
}
2022-10-26 20:49:29 +08:00
type AuthCertQuery struct {
Id uint64 `json:"id" form:"id"`
Name string `json:"name" form:"name"`
AuthMethod string `json:"authMethod" form:"authMethod"` // IP地址
2022-10-26 20:49:29 +08:00
}