cuikaidong
2025-06-12 44e283b774bb1168d0c17dfe5070a1ca8e2274cd
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
package org.jeecg.modules.iot.entity.xmlEntity;
 
 
import lombok.Data;
 
import javax.xml.bind.annotation.*;
import java.util.List;
 
@Data
@XmlType(name = "Config")
@XmlRootElement(name = "Config")
@XmlAccessorType(XmlAccessType.FIELD)
public class Config {
 
    // 系统类型
    @XmlElement(name = "SystemType", type = SystemType.class)
    private List<SystemType> systemTypeList;
    // 系统
    @XmlElement(name = "ControlSystem", type = ControlSystem.class)
    public List<ControlSystem> controlSystemList;
    // 字节顺序
    @XmlElement(name = "ByteOrder", type = ByteOrder.class)
    public List<ByteOrder> byteOrderList;
    // 参数类型
    @XmlElement(name = "SystemDataType", type = SystemDataType.class)
    public List<SystemDataType> systemDataTypeList;
 
}