mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
16 lines
429 B
Go
16 lines
429 B
Go
package entity
|
|
|
|
type MachineQuery struct {
|
|
Ids string `json:"ids" form:"ids"`
|
|
Name string `json:"name" form:"name"`
|
|
Ip string `json:"ip" form:"ip"` // IP地址
|
|
TagPath string `json:"tagPath" form:"tagPath"`
|
|
TagIds []uint64
|
|
}
|
|
|
|
type AuthCertQuery struct {
|
|
Id uint64 `json:"id" form:"id"`
|
|
Name string `json:"name" form:"name"`
|
|
AuthMethod string `json:"authMethod" form:"authMethod"` // IP地址
|
|
}
|