package org.jeecg.modules.iot.entity.xmlEntity; import lombok.Data; import javax.xml.bind.annotation.*; import java.util.List; @Data @XmlRootElement(name = "RegisterInfo") @XmlType(name = "RegisterInfo") @XmlAccessorType(XmlAccessType.FIELD) public class RegisterInfo { @XmlElement(name = "DataType", type = DataType.class) public List dataTypeList; @XmlElement(name = "RegisterType", type = RegisterType.class) public List registerTypeList; @XmlElement(name = "DefaultParameter", type = DefaultParameter.class) public List defaultParameterList; }