mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +08:00
10 lines
224 B
Go
10 lines
224 B
Go
package form
|
|
|
|
// 登录表单
|
|
type LoginForm struct {
|
|
Username string `json:"username" binding:"required"`
|
|
Password string `binding:"required"`
|
|
Captcha string `binding:"required"`
|
|
Cid string `binding:"required"`
|
|
}
|