【增加ID属性】

This commit is contained in:
weizhihong 2023-06-27 11:24:03 +08:00
parent 2de5ae92a9
commit 7d4124b580

View File

@ -7,31 +7,35 @@ option java_outer_classname = "DeviceInfoProto";
//
message Section {
string id = 1;
//
string code = 1;
string code = 2;
//
graphicData.Section.SectionType type = 2;
graphicData.Section.SectionType type = 3;
// a端公里标
string paKilometerCode = 3;
string paKilometerCode = 4;
// b端公里标
string pbKilometerCode = 4;
string pbKilometerCode = 5;
//
repeated Section children = 5;
repeated Section children = 6;
}
//
message Switch {
string code = 1;
string id = 1;
Section paSection = 2;
string code = 2;
Section pbSection = 3;
Section paSection = 3;
Section pcSection = 4;
Section pbSection = 4;
Section pcSection = 5;
}