mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-01-06 06:35:47 +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"`
|
|
}
|