1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package jnpf.flowable.model.xml;
|
| import com.alibaba.fastjson.annotation.JSONField;
| import lombok.Data;
|
| @Data
| public class XmlModel {
|
| @JSONField(name = "bpmn2:definitions")
| private Definitions definitions ;
|
| private String newNodeCode;
|
| private String newLineCode;
| }
|
|