heheng
2024-11-20 2d27b24029adafdbfc5703b38a519d65beda6a68
expert-common/src/main/java/com/gkhy/common/config/ExpertConfig.java
@@ -10,7 +10,7 @@
 */
@Component
@ConfigurationProperties(prefix = "expert")
public class expertConfig
public class ExpertConfig
{
    /** 项目名称 */
    private String name;
@@ -67,7 +67,7 @@
    public void setProfile(String profile)
    {
        expertConfig.profile = profile;
        ExpertConfig.profile = profile;
    }
    public static boolean isAddressEnabled()
@@ -77,7 +77,7 @@
    public void setAddressEnabled(boolean addressEnabled)
    {
        expertConfig.addressEnabled = addressEnabled;
        ExpertConfig.addressEnabled = addressEnabled;
    }
    public static String getCaptchaType() {
@@ -85,7 +85,7 @@
    }
    public void setCaptchaType(String captchaType) {
        expertConfig.captchaType = captchaType;
        ExpertConfig.captchaType = captchaType;
    }
    /**