cuikaidong
2025-06-12 066063ed92fdd40da4dfe21770557f3adba3e1af
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.jeecg.modules.iot.entity.xmlEntity;
 
import lombok.Data;
 
import javax.xml.bind.annotation.*;
import java.util.List;
 
@Data
@XmlRootElement(name ="ConnectionInfo")
@XmlType(name = "ConnectionInfo")
@XmlAccessorType(XmlAccessType.FIELD)
public class ConnectionInfo {
 
    @XmlAttribute(name = "Case")
    private String case1;
 
    @XmlElement(name = "Parameter", type = Parameter.class)
    public List<Parameter> parameterList;
}