syntax = "proto3"; import "stationLayoutGraphics.proto"; package pslGraphicData; option go_package = "./ats/verify/protos/graphicData"; message PslGraphicStorage { graphicData.Canvas canvas = 1; repeated PslLight pslLights = 2; // psl圆形灯 repeated PslButton pslButtons = 3; repeated PslKey pslKeys = 4; } /* PSL圆形灯 */ message PslLight { graphicData.CommonInfo common = 1; string code = 2; string topAnnotation = 3; } /** PSL按钮 */ message PslButton { graphicData.CommonInfo common = 1; string code = 2; string topAnnotation = 3; } /** PSL钥匙 */ message PslKey { graphicData.CommonInfo common = 1; string code = 2; string topAnnotation = 3; string rightAnnotation = 4; }