mirror of
https://gitcode.com/java-xiaoxin/RuoYi-Vue-Flowable-Tenant.git
synced 2026-02-03 19:10:15 +00:00
代码初始化
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user