Merge pull request #10704 from dataease/pr@dev-v2@refactor_ds

feat(仪表板): 新增下拉树接口
This commit is contained in:
Junjun 2024-07-02 14:46:21 +08:00 committed by GitHub
commit 774ea3b4fc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,4 +19,9 @@ public class ProviderFactory {
}
return SpringContextUtil.getApplicationContext().getBean(type + "DsProvider", Provider.class);
}
public static Provider getDefaultProvider() {
return SpringContextUtil.getApplicationContext().getBean("calciteProvider", Provider.class);
}
}