12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?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:xsd="http://www.w3.org/2001/XMLSchema" 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="gggl" name="公告管理" isExecutable="true">
- <startEvent id="startevent1" name="Start" activiti:initiator="applyUserId"></startEvent>
- <userTask id="ng" name="拟稿" activiti:assignee="${applyUserId}"></userTask>
- <sequenceFlow id="flow1" sourceRef="startevent1" targetRef="ng"></sequenceFlow>
- <endEvent id="endevent1" name="End"></endEvent>
- <userTask id="bmsh" name="部门审核"></userTask>
- <sequenceFlow id="flow2" sourceRef="ng" targetRef="bmsh"></sequenceFlow>
- <userTask id="bgssh" name="综合科审核"></userTask>
- <sequenceFlow id="flow3" sourceRef="bmsh" targetRef="bgssh"></sequenceFlow>
- <sequenceFlow id="flow4" sourceRef="bgssh" targetRef="endevent1"></sequenceFlow>
- </process>
- <bpmndi:BPMNDiagram id="BPMNDiagram_gggl">
- <bpmndi:BPMNPlane bpmnElement="gggl" id="BPMNPlane_gggl">
- <bpmndi:BPMNShape bpmnElement="startevent1" id="BPMNShape_startevent1">
- <omgdc:Bounds height="35.0" width="41.0" x="160.0" y="150.0"></omgdc:Bounds>
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape bpmnElement="ng" id="BPMNShape_ng">
- <omgdc:Bounds height="55.0" width="105.0" x="296.0" y="140.0"></omgdc:Bounds>
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape bpmnElement="endevent1" id="BPMNShape_endevent1">
- <omgdc:Bounds height="35.0" width="35.0" x="840.0" y="151.0"></omgdc:Bounds>
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape bpmnElement="bmsh" id="BPMNShape_bmsh">
- <omgdc:Bounds height="55.0" width="105.0" x="480.0" y="141.0"></omgdc:Bounds>
- </bpmndi:BPMNShape>
- <bpmndi:BPMNShape bpmnElement="bgssh" id="BPMNShape_bgssh">
- <omgdc:Bounds height="55.0" width="105.0" x="651.0" y="141.0"></omgdc:Bounds>
- </bpmndi:BPMNShape>
- <bpmndi:BPMNEdge bpmnElement="flow1" id="BPMNEdge_flow1">
- <omgdi:waypoint x="201.0" y="167.0"></omgdi:waypoint>
- <omgdi:waypoint x="296.0" y="167.0"></omgdi:waypoint>
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge bpmnElement="flow2" id="BPMNEdge_flow2">
- <omgdi:waypoint x="401.0" y="167.0"></omgdi:waypoint>
- <omgdi:waypoint x="480.0" y="168.0"></omgdi:waypoint>
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge bpmnElement="flow3" id="BPMNEdge_flow3">
- <omgdi:waypoint x="585.0" y="168.0"></omgdi:waypoint>
- <omgdi:waypoint x="651.0" y="168.0"></omgdi:waypoint>
- </bpmndi:BPMNEdge>
- <bpmndi:BPMNEdge bpmnElement="flow4" id="BPMNEdge_flow4">
- <omgdi:waypoint x="756.0" y="168.0"></omgdi:waypoint>
- <omgdi:waypoint x="840.0" y="168.0"></omgdi:waypoint>
- </bpmndi:BPMNEdge>
- </bpmndi:BPMNPlane>
- </bpmndi:BPMNDiagram>
- </definitions>
|