版本更新

This commit is contained in:
Zhang.WH
2025-09-03 15:54:41 +08:00
parent 0b93d16b64
commit 8f82322d10
3290 changed files with 154339 additions and 23829 deletions

View File

@@ -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");
}
}

View File

@@ -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");
}
}

View File

@@ -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");
}
}