This commit is contained in:
weizhihong 2023-08-25 15:38:03 +08:00
commit 5c10464724
2 changed files with 26 additions and 0 deletions

10
protos/picture.proto Normal file
View File

@ -0,0 +1,10 @@
syntax = "proto3";
option go_package = "./ats/verify/protos/graphicData";
enum PictureType {
/** 平面布置图 */
StationLayout = 0;
/** Psl界面 */
Psl = 1;
}

16
protos/pslGraphics.proto Normal file
View File

@ -0,0 +1,16 @@
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;
}