This commit is contained in:
fan 2023-12-21 10:28:59 +08:00
commit 509c8f3f91
2 changed files with 20 additions and 4 deletions

View File

@ -7,16 +7,16 @@ option java_outer_classname = "DeviceInfoProto";
// //
message Section { message Section {
string id = 1; uint32 id = 1;
// //
string code = 2; string code = 2;
// //
repeated string childrenId = 3; repeated uint32 childrenId = 3;
// Id // Id
string physicalSectionId = 4; uint32 physicalSectionId = 4;
// //
string destinationCode = 5; string destinationCode = 5;
@ -28,7 +28,7 @@ message Section {
// //
message Turnout { message Turnout {
string id = 1; uint32 id = 1;
string code = 2; string code = 2;

View File

@ -0,0 +1,16 @@
syntax = "proto3";
package state; //
//import "LineNetTrainOffsetDiagram.proto";
option java_package = "club.joylink.xiannccda.dto.protos";
option java_outer_classname = "SystemWarnMsgProto";
message WarnLineMessage{
repeated WarnMessage msgs = 1;
}
message WarnMessage {
int32 lineId = 1;
bool occRealConned = 2;
bool occUnrealConned = 3;
}