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;
|
| /**
| * 大气功能码(农耕)
| */
| public enum NewAtmoFunctionCode {
|
| /**
| * 新版的大气开始
| */
| // 查询心跳包
| NewQueryHeartBeat("03"),
| // 查询心跳包时间
| NewQueryHeartBeatTime("06");
|
|
| /**
| * 新版的大气结束
| */
| private String code;
|
| public String getCode() {
| return code;
| }
|
| NewAtmoFunctionCode(String code) {
| this.code = code;
| }
| }
|
|