2020-04-08 14:00:08 +08:00
|
|
|
package response
|
|
|
|
|
|
|
|
type SysCaptchaResponse struct {
|
2022-01-07 16:33:15 +08:00
|
|
|
CaptchaId string `json:"captchaId" example:"axxbbas"` // 随机数id
|
|
|
|
PicPath string `json:"picPath" example:"data:img/png;base64,///"` // base64 图像字符串
|
|
|
|
CaptchaLength int `json:"captchaLength" example:"6"` // 验证码长度
|
2020-04-08 14:00:08 +08:00
|
|
|
}
|