From 471c6a6c97166306791d02ac83aa3934f15fab2e Mon Sep 17 00:00:00 2001 From: "Destiny.Lin" Date: Mon, 21 Oct 2024 16:27:56 +0800 Subject: [PATCH] =?UTF-8?q?REPORT-129976=20=E5=91=A8=E5=BC=80=E5=A7=8B?= =?UTF-8?q?=E4=BA=8E=E9=85=8D=E7=BD=AE=E4=B8=8D=E7=94=9F=E6=95=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../fanruan/boot/env/function/DesignReportBaseComponent.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/designer-realize/src/main/java/com/fanruan/boot/env/function/DesignReportBaseComponent.java b/designer-realize/src/main/java/com/fanruan/boot/env/function/DesignReportBaseComponent.java index 7d2f3fd224..50bce512aa 100644 --- a/designer-realize/src/main/java/com/fanruan/boot/env/function/DesignReportBaseComponent.java +++ b/designer-realize/src/main/java/com/fanruan/boot/env/function/DesignReportBaseComponent.java @@ -5,6 +5,7 @@ import com.fanruan.carina.annotions.DependsOn; import com.fanruan.carina.annotions.FineComponent; import com.fanruan.carina.annotions.Start; import com.fanruan.carina.annotions.Stop; +import com.fr.report.VcsContext; /** * DesignReportBaseComponent @@ -22,7 +23,7 @@ public class DesignReportBaseComponent extends ReportBaseComponent { */ @Start public void start() { - super.start(); + VcsContext.init(); } /** @@ -30,6 +31,6 @@ public class DesignReportBaseComponent extends ReportBaseComponent { */ @Stop public void stop() { - super.stop(); + VcsContext.reset(); } }