gofiber-study/model/captcha/vo.go
2022-11-13 18:14:50 +08:00

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