proto文件调整

This commit is contained in:
fan 2023-10-13 13:36:39 +08:00
parent 3179930523
commit b33cc6eee0
3 changed files with 5 additions and 8 deletions

View File

@ -2,6 +2,7 @@ syntax = "proto3";
import "stationLayoutGraphics.proto";
import "relayCabinetLayoutGraphics.proto";
package ibpGraphicData;
option go_package = "./ats/verify/protos/graphicData";
message IBPGraphicStorage {
graphicData.Canvas canvas = 1;

View File

@ -55,10 +55,6 @@ message PslText {
/* 门控箱关联的设备列表 */
message GatedRelateDevice {
string code = 1;//
repeated GatedCombinationtype combinationtypes = 2; //
repeated graphicData.DeviceCombinationtype combinationtypes = 2; //
graphicData.RelatedRef.DeviceType deviceType = 3;//
}
message GatedCombinationtype {
string code = 1;
repeated string refDevices = 2;//
}

View File

@ -471,10 +471,10 @@ message KilometerConvert {
/* 车站关联的设备列表 */
message StationRelateDevice {
string code = 1;//
repeated Combinationtype combinationtypes = 2; //
repeated DeviceCombinationtype combinationtypes = 2; //
RelatedRef.DeviceType deviceType = 3;//
}
message Combinationtype {
message DeviceCombinationtype {
string code = 1;
repeated string refDevices = 2;//
repeated string refDevices = 2;//
}