This commit is contained in:
fan 2023-06-13 10:24:08 +08:00
commit e55bc50a0c
2 changed files with 10 additions and 4 deletions

View File

@ -1,9 +1,10 @@
syntax = "proto3"; syntax = "proto3";
option java_package = "club.joylink.xiannccda.proto.data"; package diagram;
option java_outer_classname = "LineNetTrainOffsetProto"; option java_package = "club.joylink.xiannccda.dto.protos";
option java_outer_classname = "LineNetTrainOffsetDiagramProto";
//线 //线
message LineNetTrainOffset{ message LineNetTrainOffsetDiagram{
//线id //线id
int32 lineId = 1; int32 lineId = 1;
// //

View File

@ -17,7 +17,7 @@ message RtssGraphicStorage {
repeated Section section = 10; repeated Section section = 10;
repeated StationLine stationLines = 11; repeated StationLine stationLines = 11;
repeated RunLine runLines = 12; repeated RunLine runLines = 12;
repeated TrainLine trainLines = 13;
} }
message Canvas { message Canvas {
@ -111,6 +111,11 @@ message Train {
bool hasBorder = 4; // bool hasBorder = 4; //
} }
message TrainLine {
CommonInfo common = 1;
string code = 2;
}
message IscsFan { message IscsFan {
CommonInfo common = 1; CommonInfo common = 1;
string code = 2; string code = 2;