17 lines
317 B
Protocol Buffer
17 lines
317 B
Protocol Buffer
syntax = "proto3";
|
|
import "stationLayoutGraphics.proto";
|
|
|
|
package pslGraphicData;
|
|
option go_package = "./ats/verify/protos/graphicData";
|
|
|
|
message PslGraphicStorage {
|
|
repeated PslLight psllights = 1; // psl圆形灯
|
|
}
|
|
|
|
|
|
/* PSL圆形灯 */
|
|
message PslLight {
|
|
graphicData.CommonInfo common = 1;
|
|
string code = 2;
|
|
}
|