12345678910111213141516171819202122232425262728293031 |
- <?xml version="1.0" encoding="UTF-8"?>
- <definitions xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:activiti="http://activiti.org/bpmn" xmlns:bpmndi="http://www.omg.org/spec/BPMN/20100524/DI" xmlns:omgdc="http://www.omg.org/spec/DD/20100524/DC" xmlns:omgdi="http://www.omg.org/spec/DD/20100524/DI" typeLanguage="http://www.w3.org/2001/XMLSchema" expressionLanguage="http://www.w3.org/1999/XPath" targetNamespace="http://www.activiti.org/test">
- <process id="autoAudit" name="自动审批流程" isExecutable="true">
- <startEvent id="startevent" name="Start"></startEvent>
- <userTask id="pz" name="wf.pz" activiti:assignee="${user_pz}"></userTask>
- <sequenceFlow id="flow1" sourceRef="startevent" targetRef="pz"></sequenceFlow>
- <endEvent id="endevent" name="End"></endEvent>
- <sequenceFlow id="flow3" sourceRef="pz" targetRef="endevent"></sequenceFlow>
- </process>
- <bpmndi:BPMNDiagram id="BPMNDiagram_autoAudit">
- <bpmndi:BPMNPlane bpmnElement="autoAudit" id="BPMNPlane_autoAudit">
- <bpmndi:BPMNShape bpmnElement="startevent" id="BPMNShape_startevent">
- <omgdc:Bounds height="35.0" width="35.0" x="150.0" y="190.0"></omgdc:Bounds>
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape bpmnElement="pz" id="BPMNShape_pz">
- <omgdc:Bounds height="55.0" width="105.0" x="230.0" y="180.0"></omgdc:Bounds>
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape bpmnElement="endevent" id="BPMNShape_endevent">
- <omgdc:Bounds height="35.0" width="35.0" x="390.0" y="190.0"></omgdc:Bounds>
- </bpmndi:BPMNShape>
- <bpmndi:BPMNEdge bpmnElement="flow1" id="BPMNEdge_flow1">
- <omgdi:waypoint x="185.0" y="207.0"></omgdi:waypoint>
- <omgdi:waypoint x="230.0" y="207.0"></omgdi:waypoint>
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge bpmnElement="flow3" id="BPMNEdge_flow3">
- <omgdi:waypoint x="335.0" y="207.0"></omgdi:waypoint>
- <omgdi:waypoint x="390.0" y="207.0"></omgdi:waypoint>
- </bpmndi:BPMNEdge>
- </bpmndi:BPMNPlane>
- </bpmndi:BPMNDiagram>
- </definitions>
|