mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-12-09 17:30:25 +08:00
24 lines
681 B
Go
24 lines
681 B
Go
package form
|
|
|
|
type MockData struct {
|
|
Method string `json:"method" binding:"required"`
|
|
Enable uint `json:"enable"`
|
|
Description string `valid:"Required" json:"description"`
|
|
Data string `valid:"Required" json:"data"`
|
|
EffectiveUser []string `json:"effectiveUser"`
|
|
}
|
|
|
|
type Machine struct {
|
|
Name string `json:"name"`
|
|
Ip string `json:"ip"` // IP地址
|
|
Username string `json:"username"` // 用户名
|
|
Password string `json:"-"`
|
|
Port int `json:"port"` // 端口号
|
|
}
|
|
|
|
type MachineService struct {
|
|
Name string `json:"name"`
|
|
Ip string `json:"ip"` // IP地址
|
|
Service string `json:"service"` // 服务命令
|
|
}
|