From d51aa84647d28720bd2a319a426a0bffd449b142 Mon Sep 17 00:00:00 2001 From: litianxiang Date: Thu, 5 Feb 2026 09:41:10 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E5=8F=82=E8=B5=9B=E8=80=85=E6=A0=B9?= =?UTF-8?q?=E6=8D=AE=E9=93=BE=E6=8E=A5=E8=BF=94=E5=9B=9E=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/ai/da/service/impl/GlobalAwardServiceImpl.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/com/ai/da/service/impl/GlobalAwardServiceImpl.java b/src/main/java/com/ai/da/service/impl/GlobalAwardServiceImpl.java index e474cb79..f5ecbe7d 100644 --- a/src/main/java/com/ai/da/service/impl/GlobalAwardServiceImpl.java +++ b/src/main/java/com/ai/da/service/impl/GlobalAwardServiceImpl.java @@ -384,6 +384,9 @@ public class GlobalAwardServiceImpl implements GlobalAwardService { dto.setDesignDescription(existing.getDesignDescription()); dto.setPdfPath(existing.getPdfPath()); dto.setVideoPath(existing.getVideoPath()); + dto.setVideoDuration(existing.getVideoDuration()); + dto.setPdfSize(existing.getPdfSize()); + dto.setVideoSize(existing.getVideoSize()); return dto; }