wuxw
2019-11-21 59ce81c19b75e3e6cdc6a3a65d49ec11e27b0a06
java110-config/src/main/java/com/java110/config/properties/code/Java110Properties.java
@@ -14,6 +14,12 @@
    private String mappingPath;
    private String wxAppId;
    private String wxAppSecret;
    private boolean autoReloadComponent = false;
    public String getMappingPath() {
        return mappingPath;
    }
@@ -21,4 +27,28 @@
    public void setMappingPath(String mappingPath) {
        this.mappingPath = mappingPath;
    }
    public String getWxAppId() {
        return wxAppId;
    }
    public void setWxAppId(String wxAppId) {
        this.wxAppId = wxAppId;
    }
    public String getWxAppSecret() {
        return wxAppSecret;
    }
    public void setWxAppSecret(String wxAppSecret) {
        this.wxAppSecret = wxAppSecret;
    }
    public boolean getAutoReloadComponent() {
        return autoReloadComponent;
    }
    public void setAutoReloadComponent(boolean autoReloadComponent) {
        this.autoReloadComponent = autoReloadComponent;
    }
}