1
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package com.openhis.rule.component;
|
||||
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
import com.yomahub.liteflow.core.NodeComponent;
|
||||
|
||||
@Component("a")
|
||||
public class ACmp extends NodeComponent {
|
||||
|
||||
@Override
|
||||
public void process() {
|
||||
// do your business
|
||||
System.out.println("___aaa");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
package com.openhis.rule.component;
|
||||
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
import com.yomahub.liteflow.core.NodeComponent;
|
||||
|
||||
@Component("b")
|
||||
public class BCmp extends NodeComponent {
|
||||
|
||||
@Override
|
||||
public void process() {
|
||||
// do your business
|
||||
System.out.println("___bbb");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
package com.openhis.rule.component;
|
||||
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
import com.yomahub.liteflow.core.NodeComponent;
|
||||
|
||||
@Component("c")
|
||||
public class CCmp extends NodeComponent {
|
||||
|
||||
@Override
|
||||
public void process() {
|
||||
// do your business
|
||||
System.out.println("___ccc");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user