Files
RuoYi-Vue-Flowable-Tenant/ruoyi-flowable/src/main/java/com/ruoyi/flowable/mapper/WfProcessMapper.java
2025-01-08 10:22:39 +08:00

19 lines
504 B
Java

package com.ruoyi.flowable.mapper;
import com.ruoyi.flowable.core.domain.ProcessQuery;
import com.ruoyi.flowable.domain.Deploy;
import org.apache.ibatis.annotations.Param;
import java.util.List;
public interface WfProcessMapper {
/**
* 根据条件查询流程列表
*
* @param processQuery
* @param procdefIdList
* @return
*/
List<Deploy> selectProcessList(@Param("processQuery") ProcessQuery processQuery, @Param("procdefIdList") List<String> procdefIdList);
}