feat(wechat): 修复微信公众号无法登录

This commit is contained in:
ageerle
2026-03-09 10:27:53 +08:00
parent 84dbc2cfbf
commit e601eb6db5
19 changed files with 142 additions and 71 deletions

View File

@@ -15,4 +15,13 @@ public interface ConfigService {
*/
String getConfigValue(String configKey);
/**
* 根据配置类型和配置key获取值
*
* @param category 配置类型
* @param configKey 配置key
* @return 配置属性
*/
String getConfigValue(String category, String configKey);
}