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
| package com.sandu.ximon.admin.manager.iot.rrpc.enums;
|
| /**
| * @author chenjiantian
| * A5-81 单灯主动上报:(amqp)
| */
| public enum A5LightReportEnum {
| // 上报心跳包
| HeartBeat_Data("40"),
| // 请求时间同步
| Time_Synchronized("41"),
| // 故障码
| Error_Code("42"),
| // 本地定时/光控开关灯动作上报
| Timing_LightSwitch_Report("43"),
| // 请求通讯协议模式(上电后10秒一次,发6次)
| Protocol_Model_Request("44");
|
|
| A5LightReportEnum(String code) {
| this.code = code;
| }
|
| private final String code;
|
| public String getCode() {
| return code;
| }
| }
|
|