【发布时构建的区段结构】

This commit is contained in:
weizhihong 2023-06-26 14:34:25 +08:00
parent 911d1999d0
commit 32ac71bd13

View File

@ -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;
}