feat(app): 添加场景模式配置字段

- 在AppScenicController中新增scene_mode配置项
- 默认值设置为0
- 支持从scenicConfig获取场景模式配置
This commit is contained in:
2025-11-01 19:55:21 +08:00
parent 12cd9bd275
commit e99d75ba1b
2 changed files with 2 additions and 0 deletions

View File

@@ -72,4 +72,5 @@ public class ScenicConfigResp {
private String videoSourcePackHint = "";
private Boolean shareBeforeBuy = true;
private Boolean faceSelectFirst = false;
private Integer sceneMode = 0;
}