Lius
2025-08-27 fa1f4cdd548662fc2619c4675588b9797e0dd9fa
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;
}