| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.flowable.apithird.business.entity.FlowMyBusiness; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: 流程业务扩展表 |
| | | * @Author: jeecg-boot |
| | |
| | | FlowMyBusiness getFlowMyBusiness(String instanceId); |
| | | |
| | | /** |
| | | * 根据流程实例id 获取 流程实例 |
| | | * @param instanceId 流程实例id |
| | | * @return |
| | | */ |
| | | FlowMyBusiness getFlowMyBusiness(String instanceId, String taskId); |
| | | |
| | | /** |
| | | * 获取流程实例 |
| | | * @param dataId 业务Id |
| | | * @return |
| | | */ |
| | | FlowMyBusiness selectByDataId(String dataId); |
| | | |
| | | /** |
| | | * 获取流程实例 多实例并行,存在多条记录 |
| | | * @param dataId |
| | | * @return |
| | | */ |
| | | List<FlowMyBusiness> selectListByDataId(String dataId); |
| | | } |