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