增加门控箱交互接口;修改门控箱构建逻辑bug;增加屏蔽门状态

This commit is contained in:
joylink_zhangsai 2023-10-19 17:09:36 +08:00
parent cff3d23475
commit 8f23c4062d

View File

@ -256,6 +256,12 @@ message LightState {
bool active = 2; bool active = 2;
} }
//
message PsdState {
string id = 1; //id
repeated string openDoorCodes = 2; //
}
//////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////
@ -291,6 +297,8 @@ message AllDevicesStatus{
repeated AlarmState AlarmState = 7; repeated AlarmState AlarmState = 7;
// //
repeated LightState LightState = 8; repeated LightState LightState = 8;
//
repeated PsdState psdState = 9;
} }
// //