From 32ac71bd13424f2e1cb2880f823b810cc3e5e4fc Mon Sep 17 00:00:00 2001 From: weizhihong Date: Mon, 26 Jun 2023 14:34:25 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E5=8F=91=E5=B8=83=E6=97=B6=E6=9E=84?= =?UTF-8?q?=E5=BB=BA=E7=9A=84=E5=8C=BA=E6=AE=B5=E7=BB=93=E6=9E=84=E3=80=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protos/section_status.proto | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 protos/section_status.proto diff --git a/protos/section_status.proto b/protos/section_status.proto new file mode 100644 index 0000000..3854325 --- /dev/null +++ b/protos/section_status.proto @@ -0,0 +1,23 @@ +syntax = "proto3"; + +package state; +option java_package = "club.joylink.xiannccda.dto.protos"; +option java_outer_classname = "SectionProto"; + +message Section { + // 区段编码 + string code = 1; + + // 左侧区段 + Section leftSection = 2; + + // 右侧区段 + Section rightSection = 3; + + // 是否计轴区段 + bool axleCounter = 4; + + // 关联区段 + repeated Section logicList = 5; +} +