Lius
2025-08-19 057d3af95ae0346b98e394bdbbaa2c5a7c34f4af
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.jeecg.modules.iot.entity.xmlEntity;
 
import lombok.Data;
 
import javax.xml.bind.annotation.*;
import java.util.List;
 
@Data
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SystemType")
@XmlRootElement(name = "SystemType")
public class SystemType {
 
    @XmlElement(name = "Type",type = Type.class)
    public List<Type> typeList;
}