package dto // VerifyCaptcha // @Param id body string true "验证码 id" // @Param captcha body string true "验证码" type VerifyCaptcha struct { Id string `json:"id" example:"abcdefg123456"` Captcha string `json:"captcha" example:"abcde"` }