mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 07:20:24 +08:00
14 lines
327 B
Go
14 lines
327 B
Go
package form
|
|
|
|
type LoginForm struct {
|
|
Username string `json:"username" binding:"required"`
|
|
Password string `binding:"required"`
|
|
Captcha string `json:"captcha"`
|
|
Cid string `json:"cid"`
|
|
}
|
|
|
|
type OtpVerfiy struct {
|
|
OtpToken string `json:"otpToken" binding:"required"`
|
|
Code string `json:"code" binding:"required"`
|
|
}
|