fjl
fujunling
2023-07-26 145aca4ce40cbdb14f940975da44db63eb5c497f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.vci.ubcs.flow.engine.envent;
 
import lombok.extern.slf4j.Slf4j;
import org.flowable.engine.delegate.DelegateExecution;
import org.flowable.engine.delegate.ExecutionListener;
import org.springframework.stereotype.Component;
 
import java.util.Map;
 
@Slf4j
@Component
public class FlowExecutionEndListener implements ExecutionListener {
 
    @Override
    public void notify(DelegateExecution execution) {
        Map var = execution.getVariableInstances();
        log.info("执行流程FlowExecutionEndListener",var);
    }
}