|
@@ -0,0 +1,21 @@
|
|
|
+/**
|
|
|
+ * <p>Title: liteflow</p>
|
|
|
+ * <p>Description: 轻量级的组件式流程框架</p>
|
|
|
+ * @author Bryan.Zhang
|
|
|
+ * @email weenyc31@163.com
|
|
|
+ * @Date 2020/4/1
|
|
|
+ */
|
|
|
+package com.yomahub.liteflow.test.substituteNode.cmp;
|
|
|
+
|
|
|
+import com.yomahub.liteflow.core.NodeComponent;
|
|
|
+import org.springframework.stereotype.Component;
|
|
|
+
|
|
|
+@Component("88-ffc")
|
|
|
+public class DCmp extends NodeComponent {
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void process() {
|
|
|
+ System.out.println("DCmp executed!");
|
|
|
+ }
|
|
|
+
|
|
|
+}
|