gofiber-study/model/dto/captcha.go
Shikong 72fb03ddbf 验证码简单实现
验证码添加 expire 超时时间
swag 添加 验证码测试
2022-10-25 11:40:24 +08:00

10 lines
254 B
Go

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