mirror of
https://gitee.com/shikong-sk/gofiber-study
synced 2025-05-12 04:58:03 +08:00
11 lines
274 B
Go
11 lines
274 B
Go
package captcha
|
|
|
|
type Captcha struct {
|
|
// 验证码 id
|
|
Id string `json:"id" example:"abcdefg123456"`
|
|
// 验证码图片 base64
|
|
Base64 string `json:"base64" example:"data:image/png;base64,iVBO..."`
|
|
// 过期时间 unix
|
|
Expire int64 `json:"expire" example:"10000000"`
|
|
}
|