1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.fastbee.common.core.mq.message;
|
| import lombok.Data;
|
| /**
| * 指令下发组将的model
| * @author bill
| */
| @Data
| public class InstructionsMessage {
|
| /*下发的数据*/
| private byte[] message;
|
| /*MQTt-下发的topic*/
| private String topicName;
|
| /*设备编号*/
| private String serialNumber;
| }
|
|