更改package成com.yomahub

This commit is contained in:
bryan.zhang
2020-03-26 00:03:11 +08:00
parent 98cca28182
commit 38c1404675
107 changed files with 336 additions and 1051 deletions

View File

@@ -0,0 +1,29 @@
/**
* <p>Title: liteFlow</p>
* <p>Description: 轻量级的组件式流程框架</p>
* <p>Copyright: Copyright (c) 2017</p>
* @author Bryan.Zhang
* @email weenyc31@163.com
* @Date 2017-8-1
* @version 1.0
*/
package com.yomahub.flowtest.components;
import com.yomahub.liteflow.core.FlowExecutor;
import com.yomahub.liteflow.core.NodeComponent;
import org.springframework.stereotype.Component;
import javax.annotation.Resource;
@Component("m2")
public class M2Component extends NodeComponent {
@Resource
private FlowExecutor flowExecutor;
@Override
public void process() {
System.out.println("m2 component executed!");
}
}