package requests type LoginRequest struct { LoginWx // 微信授权登录 } // LoginWx 微信授权登录 type LoginWx struct { Code string `json:"code" form:"code" label:"授权码"` }