更改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,22 @@
/**
* <p>Title: litis</p>
* <p>Description: redis的全方位开发运维平台</p>
* <p>Copyright: Copyright (c) 2017</p>
* @author Bryan.Zhang
* @email 47483522@qq.com
* @Date 2017-11-28
*/
package com.yomahub.flowtest.components;
import com.yomahub.liteflow.core.NodeComponent;
import com.yomahub.liteflow.core.NodeCondComponent;
import org.springframework.stereotype.Component;
@Component("cond")
public class CondComponent extends NodeCondComponent {
@Override
protected Class<? extends NodeComponent> processCond() throws Exception {
return BComponent.class;
}
}