2021与蓝度共同重构项目,服务端
fix
zhanzhiqin
2022-04-27 0064fa7e640994b361d34fef55e13a9d0157f8bd
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
package com.sandu.ximon.admin.manager.iot.rrpc.enums;
 
/**
 * 大气功能码(希梦自研)
 */
public enum AtmoFunctionCode {
    /**
     * 大气开始
     */
    //  查询心跳包
    QueryHeartBeat("01"),
    //  查询心跳包时间
    QueryHeartBeatTime("02"),
    //  重启
    Reboot("10"),
    //  设置心跳包间隔
    SettingHeartBeatTime("11"),
    //  大气设备心跳包存储(设备状态))
    AIR_HEARTBEAT("air_heartbeat:air_heartbeat"),
    //  大气设备心跳包存储(设备状态))农耕
    AIR_HEARTBEAT_NONG_GENG("air_heartbeat_nong_geng:air_heartbeat_nong_geng");
    /**
     * 大气结束(希梦自研)
     */
 
    private String code;
 
    public String getCode() {
        return code;
    }
 
    AtmoFunctionCode(String code) {
        this.code = code;
    }
}