2024-03-06 17:13:29 +08:00
|
|
|
package param
|
|
|
|
|
|
|
|
type Login struct {
|
2024-03-07 11:03:46 +08:00
|
|
|
Account string `json:"account" form:"account" binding:"required"`
|
|
|
|
Password string `json:"password" form:"password" binding:"required"`
|
|
|
|
CaptchaId string `json:"captchaId" form:"captchaId" binding:"required"`
|
|
|
|
CaptchaAnswer string `json:"captchaAnswer" form:"captchaAnswer" binding:"required"`
|
2024-03-06 17:13:29 +08:00
|
|
|
}
|