feat(template): 添加模板详情中的缩放裁剪功能
All checks were successful
ZhenTu-BE/pipeline/head This commit looks good

- 在 TemplateRespVO 类中添加 zoomCut 字段
- 用于表示模板是否支持缩放裁剪功能
This commit is contained in:
2025-09-06 16:57:18 +08:00
parent 0aa834bdfa
commit d9a2da49bb

View File

@@ -87,6 +87,7 @@ public class TemplateRespVO {
private Integer sort;
private String resolution;
private Integer cropEnable;
private Integer zoomCut;
private String onlyIf;
private List<TemplateRespVO> children;
}