heheng
2026-04-15 b187030ccd1e5e244c94da8bf8b1d9c50f4f9e2a
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;
    }
    /**