-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactivitiInside.bpmn
More file actions
73 lines (73 loc) · 3.69 KB
/
activitiInside.bpmn
File metadata and controls
73 lines (73 loc) · 3.69 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<bpmn:definitions xmlns:bpmn="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:camunda="http://camunda.org/schema/1.0/bpmn" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" id="Definitions_028qoy6" targetNamespace="http://bpmn.io/schema/bpmn" exporter="Camunda Modeler" exporterVersion="1.14.0">
<bpmn:process id="Process_1" name="测试流程1" isExecutable="true">
<bpmn:laneSet />
<bpmn:startEvent id="StartEvent_1" name="开始">
<bpmn:outgoing>SequenceFlow_1</bpmn:outgoing>
</bpmn:startEvent>
<bpmn:sequenceFlow id="SequenceFlow_1" sourceRef="StartEvent_1" targetRef="Task_1" />
<bpmn:task id="Task_1" name="第一个任务">
<bpmn:extensionElements>
<camunda:properties>
<camunda:property name="name" value="task1" />
</camunda:properties>
</bpmn:extensionElements>
<bpmn:incoming>SequenceFlow_1</bpmn:incoming>
<bpmn:outgoing>SequenceFlow_2</bpmn:outgoing>
</bpmn:task>
<bpmn:sequenceFlow id="SequenceFlow_2" name="条件判断" sourceRef="Task_1" targetRef="Task_2">
<bpmn:conditionExpression xsi:type="bpmn:tFormalExpression">${name=="1"}</bpmn:conditionExpression>
</bpmn:sequenceFlow>
<bpmn:endEvent id="EndEvent_1r5n15x" name="结束">
<bpmn:incoming>SequenceFlow_3</bpmn:incoming>
</bpmn:endEvent>
<bpmn:sequenceFlow id="SequenceFlow_3" sourceRef="Task_2" targetRef="EndEvent_1r5n15x" />
<bpmn:task id="Task_2" name="第二个任务">
<bpmn:incoming>SequenceFlow_2</bpmn:incoming>
<bpmn:outgoing>SequenceFlow_3</bpmn:outgoing>
</bpmn:task>
</bpmn:process>
<bpmndi:BPMNDiagram id="BPMNDiagram_1">
<bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Process_1">
<bpmndi:BPMNEdge id="SequenceFlow_0qv40ek_di" bpmnElement="SequenceFlow_1">
<di:waypoint x="209" y="120" />
<di:waypoint x="273" y="120" />
<bpmndi:BPMNLabel>
<dc:Bounds x="241" y="99" width="0" height="12" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="_BPMNShape_StartEvent_2" bpmnElement="StartEvent_1">
<dc:Bounds x="173" y="102" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="180" y="138" width="22" height="12" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNShape id="Task_1og1a32_di" bpmnElement="Task_1">
<dc:Bounds x="273" y="80" width="100" height="80" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="SequenceFlow_0gmrzu7_di" bpmnElement="SequenceFlow_2">
<di:waypoint x="373" y="120" />
<di:waypoint x="451" y="120" />
<bpmndi:BPMNLabel>
<dc:Bounds x="390" y="99" width="44" height="12" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="EndEvent_1r5n15x_di" bpmnElement="EndEvent_1r5n15x">
<dc:Bounds x="628" y="102" width="36" height="36" />
<bpmndi:BPMNLabel>
<dc:Bounds x="635" y="142" width="22" height="12" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge id="SequenceFlow_1d7jgs8_di" bpmnElement="SequenceFlow_3">
<di:waypoint x="551" y="120" />
<di:waypoint x="628" y="120" />
<bpmndi:BPMNLabel>
<dc:Bounds x="544.5" y="99" width="90" height="12" />
</bpmndi:BPMNLabel>
</bpmndi:BPMNEdge>
<bpmndi:BPMNShape id="Task_0k6x62v_di" bpmnElement="Task_2">
<dc:Bounds x="451" y="80" width="100" height="80" />
</bpmndi:BPMNShape>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</bpmn:definitions>