All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.maxiaofa.captcha.spring.boot.framework.domain.Captcha Maven / Gradle / Ivy

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