This commit is contained in:
2024-06-18 09:36:31 +08:00
parent 78f5227497
commit c508070c15
8 changed files with 40 additions and 25 deletions

View File

@@ -1,6 +1,7 @@
package com.njcn.bpm.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.njcn.bpm.pojo.dto.BpmInstanceInfo;
/**
@@ -18,4 +19,10 @@ public interface IBpmService<T> extends IService<T> {
*/
void updateProcessStatus(String businessId, Integer status);
// /**
// * 根据业务id获取历史审批id以及该任务的重要信息
// * @param processKey 业务流程key
// * @param businessId 业务流程id
// */
// BpmInstanceInfo getInstanceInfo(String processKey,String businessId);
}