mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 15:30:25 +08:00
18 lines
329 B
Go
18 lines
329 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"`
|
|
}
|
|
|
|
type DbSqlSaveForm struct {
|
|
Sql string `valid:"Required"`
|
|
Type int `valid:"Required"`
|
|
}
|