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
| package com.sandu.ximon.admin.manager.iot.rrpc.enums;
|
| /**
| * 大气功能码
| */
| public enum AtmoFunctionCode {
| // 查询心跳包
| QueryHeartBeat("01"),
| // 查询心跳包时间
| QueryHeartBeatTime("02"),
| // 重启
| Reboot("10"),
| // 设置心跳包间隔
| SettingHeartBeatTime("11");
|
| private String code;
|
| public String getCode() {
| return code;
| }
|
| AtmoFunctionCode(String code){
| this.code = code;
| }
| }
|
|