com.maxiaofa.captcha.spring.boot.framework.domain.Captcha Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rotate-captcha-spring-boot-starter Show documentation
Show all versions of rotate-captcha-spring-boot-starter Show documentation
RotateCaptcha rotate-captcha-spring-boot-starter
The newest version!
package com.maxiaofa.captcha.spring.boot.framework.domain;
/**
* 验证码
* @author MaXiaoFa
*/
public class Captcha {
/**
* 验证码UUID
* */
private String uuid;
/**
* 验证码图片base64
* */
private String img;
public String getUuid() {
return uuid;
}
public void setUuid(String uuid) {
this.uuid = uuid;
}
public String getImg() {
return img;
}
public void setImg(String img) {
this.img = img;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy