陈力
2023-06-09 cca5f79b3af36e5a908c5dfecbd30110febe3baa
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;
    }
}