设备公里标信息修改

This commit is contained in:
weizhihong 2023-07-21 16:59:30 +08:00
parent 4f27cc3670
commit c29caf7b89

View File

@ -15,17 +15,14 @@ message Section {
// //
repeated string childrenId = 3; repeated string childrenId = 3;
//
repeated graphicData.KilometerSystem kilometerSystem = 4;
//
repeated int64 convertKilometer = 5;
// Id // Id
string physicalSectionId = 6; string physicalSectionId = 4;
// //
string destinationCode = 7; string destinationCode = 5;
//
DeviceKilometer kilometer = 6;
} }
// //
@ -35,10 +32,16 @@ message Turnout {
string code = 2; string code = 2;
// //
repeated graphicData.KilometerSystem kilometerSystem = 3; DeviceKilometer kilometer = 3;
//
repeated int64 convertKilometer = 4;
} }
//
message DeviceKilometer {
int64 minKilometer = 1;
int64 maxKilometer = 2;
repeated graphicData.KilometerSystem kilometerSystem = 3;
}