gofiber-study/model/captcha/dto.go
2022-11-13 18:14:50 +08:00

10 lines
258 B
Go

package captcha
// 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"`
}