【站台继电器状态修改】

This commit is contained in:
weizhihong 2023-11-06 17:51:54 +08:00
parent ad46463cdf
commit fe2d65a91d

View File

@ -109,7 +109,7 @@ message PlatformState{
// EMP继电器状态 // EMP继电器状态
bool empj = 2; bool empj = 2;
// SPKS继电器状态 // SPKS继电器状态
repeated SpksState spksState = 3; repeated ReplyState spksState = 3;
// //
repeated MkxJState mkxJState = 4; repeated MkxJState mkxJState = 4;
} }
@ -265,6 +265,8 @@ message ReplyState {
string id = 1; string id = 1;
// //
bool xh = 2; bool xh = 2;
//
string code = 3;
} }
// //
@ -307,18 +309,10 @@ message KeyState {
int32 gear = 2; int32 gear = 2;
} }
// SPKS状态
message SpksState {
string code = 2; //
bool xh = 3; //
}
// //
message MkxJState { message MkxJState {
string code = 1; string code = 1;
bool pcbj = 2; repeated ReplyState replyState = 2;
bool pobj = 3;
bool pabj = 4;
} }
//////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////