Commit 40986d84 by gdj

暂时增加机场状态和机场空调状态枚举。

parent 3e5dd901
......@@ -33,6 +33,19 @@ public enum AirConditionerStateEnum {
DEHUMIDIFICATION_PREPARATION(9),
// 10":"风冷准备中
_TEMP_10(10),
// "11":"风冷中
_TEMP_11(11),
// "12":"风冷退出中
_TEMP_12(12),
// "13":"除雾准备中"
_TEMP_13(13),
// 14":"除雾中"
_TEMP_14(14),
// 15":"除雾退出中"
_TEMP_15(15),
DISCONNECTED(32767),
;
......
......@@ -21,7 +21,12 @@ public enum DockModeCodeEnum {
UPGRADING(3),
WORKING(4);
WORKING(4),
/**
* 待校准
*/
CALIBRATED(5);
private final int code;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment