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 "stationLayoutGraphics.proto";
import "relayCabinetLayoutGraphics.proto"; import "relayCabinetLayoutGraphics.proto";
package ibpGraphicData; package ibpGraphicData;
option go_package = "./ats/verify/protos/graphicData";
message IBPGraphicStorage { message IBPGraphicStorage {
graphicData.Canvas canvas = 1; graphicData.Canvas canvas = 1;

View File

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

View File

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