cuikaidong
2025-06-12 44e283b774bb1168d0c17dfe5070a1ca8e2274cd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.jeecg.modules.iot.entity.xmlEntity;
 
import lombok.Data;
 
import javax.xml.bind.annotation.*;
 
@Data
@XmlRootElement(name ="Type")
@XmlType(name = "Type")
@XmlAccessorType(XmlAccessType.FIELD)
public class Type {
    @XmlAttribute(name = "Name")
    private String name;
 
    @XmlAttribute(name = "Describe")
    private String describe;
}