lmw
2024-09-04 f4a6d4f0996238f9c85e4986deffe69a1c8256e6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.lotaai.canguiayw.device;
 
public class DeviceMessage {
    private int messageType;
    private int deviceType;
    private byte[] messageByte;
    public String msgString;
 
    public String getMsgString() {
        return msgString;
    }
 
    public void setMsgString(String msgString) {
        this.msgString = msgString;
    }
 
    public int getMessageType() {
        return messageType;
    }
 
    public void setMessageType(int messageType) {
        this.messageType = messageType;
    }
 
    public int getDeviceType() {
        return deviceType;
    }
 
    public void setDeviceType(int deviceType) {
        this.deviceType = deviceType;
    }
 
    public byte[] getMessageByte() {
        return messageByte;
    }
 
    public void setMessageByte(byte[] messageByte) {
        this.messageByte = messageByte;
    }
}