刘光辉
9 小时以前 0dfe84494048ce27ba8449831782128412d3eb13
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
const simpleDefaultXml = `<?xml version="1.0" encoding="UTF-8"?>
<bpmn2:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="sample-diagram" targetNamespace="http://www.flowable.org/processdef" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd">
  <bpmn2:process id="Process_1" name="" isExecutable="true">
    <bpmn2:startEvent id="Event_0oz4pwh" >
      <bpmn2:outgoing>Flow_1iadlmn</bpmn2:outgoing>
    </bpmn2:startEvent>
    <bpmn2:userTask id="Activity_1qf73gq">
      <bpmn2:incoming>Flow_1iadlmn</bpmn2:incoming>
      <bpmn2:outgoing>Flow_1kz1x8a</bpmn2:outgoing>
    </bpmn2:userTask>
    <bpmn2:sequenceFlow id="Flow_1iadlmn" sourceRef="Event_0oz4pwh" targetRef="Activity_1qf73gq" />
    <bpmn2:endEvent id="Event_0zlhfee">
      <bpmn2:incoming>Flow_1kz1x8a</bpmn2:incoming>
    </bpmn2:endEvent>
    <bpmn2:sequenceFlow id="Flow_1kz1x8a" sourceRef="Activity_1qf73gq" targetRef="Event_0zlhfee" />
  </bpmn2:process>
  <bpmndi:BPMNDiagram id="BPMNDiagram_1">
    <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Process_1">
      <bpmndi:BPMNShape id="Event_0oz4pwh_di" bpmnElement="Event_0oz4pwh">
        <dc:Bounds x="675" y="75" width="90" height="32" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="Activity_1qf73gq_di" bpmnElement="Activity_1qf73gq">
        <dc:Bounds x="620" y="227" width="200" height="88" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="Event_0zlhfee_di" bpmnElement="Event_0zlhfee">
        <dc:Bounds x="675" y="435" width="90" height="32" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="Flow_1iadlmn_di" bpmnElement="Flow_1iadlmn">
        <di:waypoint x="720" y="107" />
        <di:waypoint x="720" y="227" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="706" y="181" width="28" height="28" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="Flow_1kz1x8a_di" bpmnElement="Flow_1kz1x8a">
        <di:waypoint x="720" y="315" />
        <di:waypoint x="720" y="435" />
        <bpmndi:BPMNLabel>
          <dc:Bounds x="706" y="361" width="28" height="28" />
        </bpmndi:BPMNLabel>
      </bpmndi:BPMNEdge>
    </bpmndi:BPMNPlane>
  </bpmndi:BPMNDiagram>
</bpmn2:definitions>`;
const defaultXml = `<?xml version="1.0" encoding="UTF-8"?>
<bpmn2:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" id="sample-diagram" targetNamespace="http://www.flowable.org/processdef" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd">
  <bpmn2:process id="Process_1"  isExecutable="true">
    <bpmn2:startEvent id="Event_04q7xii"  />
  </bpmn2:process>
  <bpmndi:BPMNDiagram id="BPMNDiagram_1">
    <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Process_1">
      <bpmndi:BPMNShape id="Event_04q7xii_di" bpmnElement="Event_04q7xii" >
        <dc:Bounds x="145" y="304" width="90" height="32" />
      </bpmndi:BPMNShape>
    </bpmndi:BPMNPlane>
  </bpmndi:BPMNDiagram>
</bpmn2:definitions>`;
 
const freeDefaultXml = `<?xml version="1.0" encoding="UTF-8"?>
<bpmn2:definitions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:dc="http://www.omg.org/spec/DD/20100524/DC" xmlns:di="http://www.omg.org/spec/DD/20100524/DI" id="sample-diagram" targetNamespace="http://www.flowable.org/processdef" xsi:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd">
  <bpmn2:process id="Process_1" isExecutable="true">
    <bpmn2:startEvent id="Event_04q7xii">
      <bpmn2:outgoing>Flow_026otk8</bpmn2:outgoing>
    </bpmn2:startEvent>
    <bpmn2:userTask id="Activity_0x7jbm1">
      <bpmn2:incoming>Flow_026otk8</bpmn2:incoming>
      <bpmn2:outgoing>Flow_0hyov7e</bpmn2:outgoing>
    </bpmn2:userTask>
    <bpmn2:sequenceFlow id="Flow_026otk8" sourceRef="Event_04q7xii" targetRef="Activity_0x7jbm1">
    </bpmn2:sequenceFlow>
    <bpmn2:endEvent id="Event_06nxded">
      <bpmn2:incoming>Flow_0hyov7e</bpmn2:incoming>
    </bpmn2:endEvent>
    <bpmn2:sequenceFlow id="Flow_0hyov7e" sourceRef="Activity_0x7jbm1" targetRef="Event_06nxded">
    </bpmn2:sequenceFlow>
  </bpmn2:process>
  <bpmndi:BPMNDiagram id="BPMNDiagram_1">
    <bpmndi:BPMNPlane id="BPMNPlane_1" bpmnElement="Process_1">
      <bpmndi:BPMNShape id="Event_04q7xii_di" bpmnElement="Event_04q7xii">
        <dc:Bounds x="145" y="304" width="90" height="32" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="Activity_0x7jbm1_di" bpmnElement="Activity_0x7jbm1">
        <dc:Bounds x="395" y="276" width="200" height="88" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNShape id="Event_06nxded_di" bpmnElement="Event_06nxded">
        <dc:Bounds x="755" y="304" width="90" height="32" />
      </bpmndi:BPMNShape>
      <bpmndi:BPMNEdge id="Flow_026otk8_di" bpmnElement="Flow_026otk8">
        <di:waypoint x="235" y="320" />
        <di:waypoint x="395" y="320" />
      </bpmndi:BPMNEdge>
      <bpmndi:BPMNEdge id="Flow_0hyov7e_di" bpmnElement="Flow_0hyov7e">
        <di:waypoint x="595" y="320" />
        <di:waypoint x="755" y="320" />
      </bpmndi:BPMNEdge>
    </bpmndi:BPMNPlane>
  </bpmndi:BPMNDiagram>
</bpmn2:definitions>`
 
export { defaultXml, simpleDefaultXml, freeDefaultXml };