package com.application.zhangshi_app_android.bean;
|
|
/**
|
* @author Ljj
|
* @date 2023.03.24. 15:29
|
* @desc 登录/注册的验证码图片类
|
*/
|
public class CaptchaImageBean {
|
/**
|
* 图片的base64编码
|
*/
|
private String img;
|
/**
|
* 验证码的 uuid
|
*/
|
private String uuid;
|
/**
|
* 验证码图片的值(方便开发阶段使用)
|
*/
|
private String value;
|
|
public CaptchaImageBean(String img, String uuid, String value) {
|
this.img = img;
|
this.uuid = uuid;
|
this.value = value;
|
}
|
|
public String getImg() {
|
return img;
|
}
|
|
public void setImg(String img) {
|
this.img = img;
|
}
|
|
public String getUuid() {
|
return uuid;
|
}
|
|
public void setUuid(String uuid) {
|
this.uuid = uuid;
|
}
|
|
public String getValue() {
|
return value;
|
}
|
|
public void setValue(String value) {
|
this.value = value;
|
}
|
|
@Override
|
public String toString() {
|
return "CaptchaImageBean{" +
|
"img='" + img + '\'' +
|
", uuid='" + uuid + '\'' +
|
", value='" + value + '\'' +
|
'}';
|
}
|
}
|