mirror of
https://gitee.com/shikong-sk/gofiber-study
synced 2025-02-24 07:42:15 +08:00
10 lines
254 B
Go
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"`
|
|
}
|