11 lines
183 B
Go

package requests
type LoginRequest struct {
Login // 登录
}
// Login 登录
type Login struct {
OpenId string `json:"openid" form:"openid" label:"openid" validate:"required"`
}