package org.jeecg.modules.iot.entity.xmlEntity; import lombok.Data; import javax.xml.bind.annotation.*; @Data @XmlRootElement(name = "NodeAttribute") @XmlType(name = "NodeAttribute") @XmlAccessorType(XmlAccessType.FIELD) public class NodeAttribute { @XmlAttribute(name = "Id") private String id; @XmlAttribute(name = "Name") private String name; @XmlAttribute(name = "Describe") private String describe; @XmlAttribute(name = "DataType") private String dataType; @XmlAttribute(name = "Default") private String default1; }