From d9a2da49bb05be978b47ce3bebbe4a751c2759c1 Mon Sep 17 00:00:00 2001 From: Jerry Yan <792602257@qq.com> Date: Sat, 6 Sep 2025 16:57:18 +0800 Subject: [PATCH] =?UTF-8?q?feat(template):=20=E6=B7=BB=E5=8A=A0=E6=A8=A1?= =?UTF-8?q?=E6=9D=BF=E8=AF=A6=E6=83=85=E4=B8=AD=E7=9A=84=E7=BC=A9=E6=94=BE?= =?UTF-8?q?=E8=A3=81=E5=89=AA=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 TemplateRespVO 类中添加 zoomCut 字段 - 用于表示模板是否支持缩放裁剪功能 --- .../com/ycwl/basic/model/pc/template/resp/TemplateRespVO.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/com/ycwl/basic/model/pc/template/resp/TemplateRespVO.java b/src/main/java/com/ycwl/basic/model/pc/template/resp/TemplateRespVO.java index d20af44..953cd23 100644 --- a/src/main/java/com/ycwl/basic/model/pc/template/resp/TemplateRespVO.java +++ b/src/main/java/com/ycwl/basic/model/pc/template/resp/TemplateRespVO.java @@ -87,6 +87,7 @@ public class TemplateRespVO { private Integer sort; private String resolution; private Integer cropEnable; + private Integer zoomCut; private String onlyIf; private List children; }