compatible

This commit is contained in:
2025-09-03 14:35:00 +08:00
parent 829ab50b03
commit 5c416f6c09
2 changed files with 2 additions and 0 deletions

View File

@@ -89,6 +89,7 @@ public class AppScenicController {
resp.setVideoSourcePackHint(scenicConfig.getVideoSourcePackHint());
resp.setImageSourcePackHint(scenicConfig.getImageSourcePackHint());
resp.setVoucherEnable(scenicConfig.getVoucherEnable());
resp.setEnableVoucher(scenicConfig.getVoucherEnable()); // compactible
return ApiResponse.success(resp);
}

View File

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