懒羊羊
2023-11-14 8286c62256f23bc2367a6729c0f46f84215e380b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
package cn.stylefeng.guns.workflow.modular.mapper;
 
import cn.stylefeng.guns.workflow.modular.entity.Procinst;
import cn.stylefeng.guns.workflow.modular.model.params.ProcinstParam;
import cn.stylefeng.guns.workflow.modular.model.result.ProcinstResult;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import org.apache.ibatis.annotations.Param;
 
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 * Mapper 接口
 * </p>
 *
 * @author fengshuonan
 * @since 2019-08-19
 */
public interface HistoryProcessMapper extends BaseMapper<Procinst> {
 
    /**
     * 获取列表
     *
     * @author fengshuonan
     * @Date 2019-08-19
     */
    List<ProcinstResult> customList(@Param("paramCondition") ProcinstParam paramCondition);
 
    /**
     * 获取map列表
     *
     * @author fengshuonan
     * @Date 2019-08-19
     */
    List<Map<String, Object>> customMapList(@Param("paramCondition") ProcinstParam paramCondition);
 
    /**
     * 获取分页实体列表
     *
     * @author fengshuonan
     * @Date 2019-08-19
     */
    Page<ProcinstResult> customPageList(@Param("page") Page page, @Param("paramCondition") ProcinstParam paramCondition);
 
    /**
     * 获取分页map列表
     *
     * @author fengshuonan
     * @Date 2019-08-19
     */
    Page<Map<String, Object>> customPageMapList(@Param("page") Page page, @Param("paramCondition") ProcinstParam paramCondition);
 
    /**
     * 历史流程列表
     *
     * @author fengshuonan
     * @Date 2019-08-28 16:23
     */
    List<Map<String, Object>> datalistPage(@Param("page") Page page, @Param("pd") HashMap<String, Object> param);
 
    /**
     * 获取历史流程变量
     *
     * @author fengshuonan
     * @Date 2019-08-28 16:23
     */
    List<Map<String, Object>> hivarList(@Param("PROC_INST_ID_") String procInstId);
 
}