1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package org.jeecg.modules.iot.entity.xmlEntity;
|
|
| import lombok.Data;
|
| import javax.xml.bind.annotation.*;
| import java.util.List;
|
| @Data
| @XmlType(name = "ByteOrder")
| @XmlRootElement(name = "ByteOrder")
| @XmlAccessorType(XmlAccessType.FIELD)
| public class ByteOrder {
|
| // 系统类型
| @XmlElement(name = "Type", type = ByteOrderType.class)
| private List<ByteOrderType> typeList;
| }
|
|