com.gccloud.starter.common.config.bean.Captcha Maven / Gradle / Ivy
package com.gccloud.starter.common.config.bean;
import com.gccloud.starter.common.constant.GlobalConst;
import lombok.Data;
/**
* @author liuchengbiao
* @date 2020-06-16 14:22
*/
@Data
public class Captcha {
/**
* 是否打开验证码
*/
private boolean enable = true;
/**
* 参考 {@link GlobalConst.Captcha.Type}
*/
private int type = 4;
/**
* 验证码图片宽度
*/
private int width = 100;
/**
* 验证码图片高度
*/
private int height = 30;
/**
* 验证码长度
*/
private int length = 4;
}