mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 16:00:25 +08:00
13 lines
234 B
Go
13 lines
234 B
Go
package form
|
|
|
|
// 登录表单
|
|
type LoginForm struct {
|
|
Username string `valid:"Required"`
|
|
Password string `valid:"Required"`
|
|
}
|
|
|
|
type MachineRunForm struct {
|
|
MachineId int64 `valid:"Required"`
|
|
Cmd string `valid:"Required"`
|
|
}
|