疯狂的狮子Li
2024-05-10 3ffd1e3b41f87217f0b7fe5750858f2bba7fe7c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.dromara.workflow.flowable.strategy;
 
 
/**
 * 流程监听
 *
 * @author may
 * @date 2023-12-27
 */
public interface FlowProcessEventHandler {
 
    /**
     * 执行办理任务监听
     *
     * @param businessKey 业务id
     * @param status      状态
     * @param submit      当为true时为申请人节点办理
     */
    void handleProcess(String businessKey, String status, boolean submit);
}