1.技术监督试运行,不通过整体预告警单流程
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
package com.njcn.bpm.service;
|
||||
|
||||
import com.baomidou.mybatisplus.extension.service.IService;
|
||||
import com.njcn.bpm.pojo.dto.BpmInstanceInfo;
|
||||
|
||||
|
||||
/**
|
||||
* 统筹流程实例的公共方案
|
||||
* @author hongawen
|
||||
* @version 1.0.0
|
||||
* @date 2024年06月12日 18:14
|
||||
*/
|
||||
public interface IBpmReasonService<T> extends IService<T> {
|
||||
|
||||
/**
|
||||
* 根据业务id实时更新当前业务流程状态
|
||||
* @param businessId 实际业务id
|
||||
* @param status 流程实例当前状态,具体参考BpmTaskStatusEnum枚举
|
||||
*/
|
||||
void updateProcessStatus(String businessId,String reason, Integer status);
|
||||
|
||||
/**
|
||||
* 根据业务id获取历史审批id以及该任务的重要信息
|
||||
* @param businessId 业务流程id
|
||||
*/
|
||||
BpmInstanceInfo getInstanceInfo(String businessId);
|
||||
}
|
||||
Reference in New Issue
Block a user