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