gofiber-study/model/dto/captcha.go

10 lines
254 B
Go
Raw Normal View History

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"`
}