修改屏蔽门状态;修改滑动门ecs实体构建bug

This commit is contained in:
joylink_zhangsai 2023-11-03 10:41:46 +08:00
parent 29711ded19
commit 280219a91a
2 changed files with 16 additions and 2 deletions

View File

@ -283,8 +283,16 @@ message LightState {
//
message PsdState {
string id = 1; //id
repeated int32 openAsdCodes = 2; //
bool close = 3; //
repeated AsdState asdStates = 2; //
bool mgj = 3; //
}
//
message AsdState {
string code = 1; //
bool kmdw = 2; //
bool gmdw = 3; //
bool mgj = 4; //
}
//

View File

@ -75,6 +75,11 @@ message Psd {
ForceKm4 = 7; //
ForceKm8 = 8; //
ForceGm = 9; //
AsdCannotOpen = 10; //
CancelAsdCannotOpen = 11; //
AsdCannotClose = 12; //
CancelAsdCannotClose = 13; //
}
}
@ -84,4 +89,5 @@ message PsdOperationReq {
int32 mapId = 2; // id
string deviceId = 3; // id
Psd.Operation operation = 4; //
repeated int32 asdCodes = 5; ///
}