feat(scenic): 添加景区配置分组功能并优化配置获取接口

- 在 ScenicConfigResp 中添加 groupingEnable 字段,用于表示是否开启分组功能
- 重构 getConfig 方法,使用 ScenicConfigManager 替代 ScenicConfigEntity- 优化配置参数的获取方式,使用 getString、getBoolean等方法替代直接获取字段值
This commit is contained in:
2025-09-15 10:14:10 +08:00
parent c5f7003077
commit 048780071b
2 changed files with 22 additions and 20 deletions

View File

@@ -47,4 +47,5 @@ public class ScenicConfigResp {
private String videoSourcePackHint = "";
private Boolean voucherEnable;
private Boolean enableVoucher;
private Boolean groupingEnable;
}