package org.jeecg.modules.iot.entity.xmlEntity;
|
|
import lombok.Data;
|
|
import javax.xml.bind.annotation.*;
|
import java.util.List;
|
|
@Data
|
@XmlRootElement(name ="DriveType")
|
@XmlType(name = "DriveType")
|
@XmlAccessorType(XmlAccessType.FIELD)
|
public class DriveType {
|
|
@XmlAttribute(name = "Name")
|
private String name;
|
|
@XmlAttribute(name = "FloatByteOrder")
|
private String floatByteOrder;
|
|
@XmlElement(name = "ConnectionInfo", type = ConnectionInfo.class)
|
public List<ConnectionInfo> connectionInfoList;
|
|
@XmlElement(name = "RegisterInfo", type = RegisterInfo.class)
|
public List<RegisterInfo> registerInfoList;
|
}
|