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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
| <?xml version="1.0" encoding="UTF-8" ?>
| <!DOCTYPE mapper
| PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
| "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
| <mapper namespace="org.dromara.workflow.mapper.FlwTaskMapper">
| <resultMap type="org.dromara.workflow.domain.vo.FlowTaskVo" id="FlowTaskResult">
| </resultMap>
| <resultMap type="org.dromara.workflow.domain.vo.FlowHisTaskVo" id="FlowHisTaskResult">
| </resultMap>
|
| <select id="getListRunTask" resultMap="FlowTaskResult">
| select * from (
| select distinct
| t.id,
| t.node_code,
| t.node_name,
| t.node_type,
| t.definition_id,
| t.instance_id,
| t.create_time,
| t.update_time,
| t.tenant_id,
| i.business_id,
| i.flow_status,
| i.create_by,
| d.flow_name,
| d.flow_code,
| d.form_custom,
| d.category,
| COALESCE(t.form_path, d.form_path) as form_path,
| d.version,
| uu.processed_by,
| uu.type
| from flow_task as t
| left join flow_user uu on uu.associated = t.id
| left join flow_definition d on t.definition_id = d.id
| left join flow_instance i on t.instance_id = i.id
| where t.node_type = 1
| and t.del_flag = '0'
| and uu.del_flag = '0'
| and uu.type in ('1','2','3')
| ) t
| ${ew.getCustomSqlSegment}
| </select>
|
| <select id="getListFinishTask" resultMap="FlowHisTaskResult">
| select * from (
| select
| a.id,
| a.node_code,
| a.node_name,
| a.cooperate_type,
| a.approver,
| a.collaborator,
| a.node_type,
| a.target_node_code,
| a.target_node_name,
| a.definition_id,
| a.instance_id,
| a.flow_status flow_task_status,
| a.message,
| a.ext,
| a.create_time,
| a.update_time,
| a.tenant_id,
| a.form_custom,
| a.form_path,
| b.flow_status,
| b.business_id,
| b.create_by,
| c.flow_name,
| c.flow_code,
| c.category,
| c.version
| from flow_his_task a
| left join flow_instance b on a.instance_id = b.id
| left join flow_definition c on a.definition_id = c.id
| where a.del_flag ='0'
| and b.del_flag = '0'
| and c.del_flag = '0'
| and a.node_type in ('1','3','4')
| ) t
| ${ew.getCustomSqlSegment}
| </select>
|
| <select id="getTaskCopyByPage" resultMap="FlowTaskResult">
| select * from (
| select
| b.id,
| b.update_time,
| c.business_id,
| c.flow_status,
| c.create_by,
| a.processed_by,
| a.create_time,
| b.form_custom,
| b.form_path,
| b.node_name,
| b.node_code,
| d.flow_name,
| d.flow_code,
| d.category,
| d.version
| from flow_user a
| left join flow_his_task b on a.associated = b.task_id
| left join flow_instance c on b.instance_id = c.id
| left join flow_definition d on c.definition_id=d.id
| where a.type = '4'
| and a.del_flag = '0'
| and b.del_flag = '0'
| and d.del_flag = '0'
| ) t
| ${ew.getCustomSqlSegment}
| </select>
| </mapper>
|
|