Browse Source

验证码配置

tags/v3.1.0
RuoYi 3 years ago
parent
commit
3af7af265b
  1. 46
      ruoyi-gateway/src/main/java/com/ruoyi/gateway/config/properties/CaptchaProperties.java

46
ruoyi-gateway/src/main/java/com/ruoyi/gateway/config/properties/CaptchaProperties.java

@ -0,0 +1,46 @@ @@ -0,0 +1,46 @@
package com.ruoyi.gateway.config.properties;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.context.annotation.Configuration;
/**
* 验证码配置
*
* @author ruoyi
*/
@Configuration
@RefreshScope
@ConfigurationProperties(prefix = "security.captcha")
public class CaptchaProperties
{
/**
* 验证码开关
*/
private boolean enabled;
/**
* 验证码类型math 数组计算 char 字符
*/
private String type;
public boolean isEnabled()
{
return enabled;
}
public void setEnabled(boolean enabled)
{
this.enabled = enabled;
}
public String getType()
{
return type;
}
public void setType(String type)
{
this.type = type;
}
}
Loading…
Cancel
Save