/** * Copyright (c) 2018 人人开源 All rights reserved. *

* https://www.renren.io *

* 版权所有,侵权必究! */ 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 getFlowInstance(String wfCode, Long bizId); }