gofiber-study/model/vo/captcha.go

11 lines
269 B
Go
Raw Normal View History

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