增加门控箱交互接口;修改门控箱构建逻辑bug;增加屏蔽门状态
This commit is contained in:
parent
cff3d23475
commit
8f23c4062d
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
//服务器端向前端推送的设备状态信息
|
//服务器端向前端推送的设备状态信息
|
||||||
|
Loading…
Reference in New Issue
Block a user