添加空调状态

This commit is contained in:
孙小云 2026-01-21 18:31:50 +08:00
parent 372a289cf7
commit 6e538bd4cb
2 changed files with 6 additions and 1 deletions

View File

@ -90,7 +90,10 @@ public class DeviceTelemetry {
); );
/**
* 舱门状态
* {"0":"关闭","1":"打开","2":"半开","3":"舱盖状态异常"}
*/
public static final TelemetryKey<Integer> Cover_State = TelemetryKey.of( public static final TelemetryKey<Integer> Cover_State = TelemetryKey.of(
"cover_state", "cover_state",
Integer.class, Integer.class,

View File

@ -224,6 +224,8 @@ public class BufferDeviceImpl implements IBufferDeviceService
} }
}); });
//cabinDoorStatus
return dto; return dto;
} }