懒羊羊
2023-08-30 1ac2bc1590406d9babec036e154d8d08f34a6aa1
提交 | 用户 | 时间
1ac2bc 1 package cn.stylefeng.guns.workflow.modular.mapper;
2
3 import org.apache.ibatis.annotations.Param;
4
5 import java.util.List;
6 import java.util.Map;
7
8 /**
9  * 历史任务
10  *
11  * @author fengshuonan
12  * @Date 2019-08-28 18:01
13  */
14 public interface TaskHistoryMapper {
15
16     /**
17      * 历史任务列表
18      *
19      * @author fengshuonan
20      * @Date 2019-08-28 18:01
21      */
22     List<Map<String, Object>> historyTaskList(@Param("PROC_INST_ID_") String procInstId);
23     
24 }