- package com.xjrsoft.module.liteflow.node;
- import com.yomahub.liteflow.core.NodeComponent;
- import org.springframework.stereotype.Component;
- /**
- * 发文流程结束处理
- */
- @Component("wf_oa_push_node")
- public class WfOaPushNode extends NodeComponent {
- @Override
- public void process() throws Exception {
- System.out.println("wf_oa_push_node");
- }
- }
|