代码初始化

This commit is contained in:
fengcheng
2024-12-30 17:06:52 +08:00
commit ffa54876ea
916 changed files with 120082 additions and 0 deletions

View File

@@ -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);
}