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
29
30
31
32
33
34
35
36
37
38
package org.jeecg.modules.iot.entity.xmlEntity;
 
 
import lombok.Data;
 
import javax.xml.bind.annotation.*;
import java.util.List;
 
@Data
@XmlRootElement(name ="Parameter")
@XmlType(name = "Parameter")
@XmlAccessorType(XmlAccessType.FIELD)
public class Parameter {
 
    @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;
 
    @XmlAttribute(name = "systemDataType")
    private String systemDataType;
 
    @XmlAttribute(name = "case")
    private String case1;
 
    @XmlElement(name = "NodeAttribute", type = NodeAttribute.class)
    public List<NodeAttribute> nodeAttributeList;
}