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;
|
|
import java.util.ArrayList;
|
import java.util.List;
|
|
/**
|
* @author ruoyi
|
*/
|
@Configuration
|
@RefreshScope
|
@ConfigurationProperties(prefix = "security.sign")
|
public class SignProperties {
|
|
private Boolean enable;
|
|
public Boolean getEnable() {
|
return enable;
|
}
|
|
public void setEnable(Boolean enable) {
|
this.enable = enable;
|
}
|
}
|