刘光辉
昨天 bb638871a7fb692d80f1b7a758f991dc0879002c
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
package jnpf.flowable.model.xml.diagram;
 
import com.alibaba.fastjson.annotation.JSONField;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import lombok.Data;
 
import java.util.ArrayList;
import java.util.List;
@Data
@XmlAccessorType(XmlAccessType.FIELD)
public class Edge {
 
    @XmlAttribute
    private String id;
 
    @XmlAttribute
    private String bpmnElement;
 
    @JSONField(name = "bpmndi:BPMNLabel")
    @XmlElement(name = "bpmndi:BPMNLabel")
    private Label label;
 
    @JSONField(name = "di:waypoint")
    @XmlElement(name = "di:waypoint")
    private List<Waypoint> waypoint = new ArrayList<>();
 
}