9 lines
347 B
Go
9 lines
347 B
Go
package param
|
|
|
|
type Login struct {
|
|
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"`
|
|
}
|