From ed2266334d3e1e87ff6330479a128bc3cccd6ae0 Mon Sep 17 00:00:00 2001 From: dong <58670809@qq.com> Date: Fri, 14 Jul 2023 15:07:39 +0800 Subject: [PATCH] =?UTF-8?q?=E7=B4=A2=E5=BC=95=E5=AD=97=E6=AE=B5=E8=B0=83?= =?UTF-8?q?=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/stationLayoutGraphics.proto | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/protos/stationLayoutGraphics.proto b/protos/stationLayoutGraphics.proto index 699b165..b7205b7 100644 --- a/protos/stationLayoutGraphics.proto +++ b/protos/stationLayoutGraphics.proto @@ -122,10 +122,10 @@ message TrainWindow { message AxleCounting { CommonInfo common = 1; - string code = 2; + string code = 2; // 名称 KilometerSystem kilometerSystem = 3; //公里标 repeated RelatedRef axleCountingRef = 4; // 计轴关联的区段和道岔 - int32 indexNumber = 5; //计轴的索引编号 + int32 index = 5; //计轴的索引编号 } // message Train { @@ -244,19 +244,19 @@ message SectionLink { message AxleCountingSection { // 计轴区段 CommonInfo common = 1; - string code = 2; + string code = 2; // 名称 repeated Point points = 3; RelatedRef paRef = 4; // 计轴区段A端关联的计轴 RelatedRef pbRef = 5; // 计轴区段B端关联的计轴 repeated TurnoutPosRef turnoutPos = 6; //关联道岔的正反位--0是定位,1是反位 - int32 indexNumber = 7; //计轴区段的索引编号 + int32 index = 7; //计轴区段的索引编号 } message LogicSection { // 逻辑区段 CommonInfo common = 1; - string code = 2; + string code = 2; // 名称 repeated Point points = 3; string axleSectionId = 4; // 关联的计轴区段Id - int32 indexNumber = 5; // 索引编号 + int32 index = 5; // 索引编号 string turnoutId = 6; // 关联的岔芯对应的道岔id }