mirror of
https://gitcode.com/java-xiaoxin/RuoYi-Vue-Flowable-Tenant.git
synced 2025-12-30 12:02:26 +00:00
19 lines
504 B
Java
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);
|
|
}
|