Browse Source

Pull request #15128: REPORT-129976 周开始于配置不生效

Merge in DESIGN/design from ~DESTINY.LIN/design:fbp/master to fbp/master

* commit 'a1a9def7c6e243c01100981e04dd070bcbb49549':
  REPORT-129976 周开始于配置不生效
fbp/master
Destiny.Lin-林锦龙 1 month ago
parent
commit
6f1002d93c
  1. 5
      designer-realize/src/main/java/com/fanruan/boot/env/function/DesignReportBaseComponent.java

5
designer-realize/src/main/java/com/fanruan/boot/env/function/DesignReportBaseComponent.java vendored

@ -5,6 +5,7 @@ import com.fanruan.carina.annotions.DependsOn;
import com.fanruan.carina.annotions.FineComponent; import com.fanruan.carina.annotions.FineComponent;
import com.fanruan.carina.annotions.Start; import com.fanruan.carina.annotions.Start;
import com.fanruan.carina.annotions.Stop; import com.fanruan.carina.annotions.Stop;
import com.fr.report.VcsContext;
/** /**
* DesignReportBaseComponent * DesignReportBaseComponent
@ -22,7 +23,7 @@ public class DesignReportBaseComponent extends ReportBaseComponent {
*/ */
@Start @Start
public void start() { public void start() {
super.start(); VcsContext.init();
} }
/** /**
@ -30,6 +31,6 @@ public class DesignReportBaseComponent extends ReportBaseComponent {
*/ */
@Stop @Stop
public void stop() { public void stop() {
super.stop(); VcsContext.reset();
} }
} }

Loading…
Cancel
Save