jinlin
2023-11-16 86b6785e74bf268885e8663380b3e3c0cb0c4bad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
 * Copyright (c) 2018 人人开源 All rights reserved.
 * <p>
 * https://www.renren.io
 * <p>
 * 版权所有,侵权必究!
 */
 
package com.zt.modules.workflow.dao;
 
import com.zt.common.dao.BaseDao;
import com.zt.core.sys.model.SysUser;
import com.zt.modules.workflow.dto.BizInfoDto;
import com.zt.modules.workflow.model.WfRunInstance;
import com.zt.modules.workflow.model.WfRunTask;
import com.zt.modules.workflowconfig.model.WfDefStep;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * 工作流运行-log
 *
 * @author Alex
 * @since 1.0.0
 */
@Mapper
public interface WfRunInstanceDao extends BaseDao<WfRunInstance> {
    WfRunInstance getFlowInstance(String wfCode, Long bizId);
 
}