修改屏蔽门ecs逻辑

This commit is contained in:
joylink_zhangsai 2023-12-08 16:46:49 +08:00
parent 73c2a6da9c
commit 13ed3c733c

View File

@ -67,15 +67,21 @@ message Psd {
enum Operation {
Undefined = 0;
//
Km4 = 1; //
CancelKm4 = 2; //
Km8 = 3; //
CancelKm8 = 4; //
Gm = 5; //
CancelGm = 6; //
ForceKm4 = 7; //
ForceKm8 = 8; //
ForceGm = 9; //
// Km4 = 1; //
// CancelKm4 = 2; //
// Km8 = 3; //
// CancelKm8 = 4; //
// Gm = 5; //
// CancelGm = 6; //
// ForceKm4 = 7; //
// ForceKm8 = 8; //
// ForceGm = 9; //
Km = 1; //
CancelKm = 2; //
Gm = 3; //
CancelGm = 4; //
ForceKm = 5; //
ForceGm = 6; //
CancelForce = 10; //
//
AsdCannotOpen = 11; //
@ -97,4 +103,5 @@ message PsdOperationReq {
string deviceId = 3; // id
Psd.Operation operation = 4; //
repeated int32 asdCodes = 5; ///
int32 group = 6; //
}